You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I took the connect-basic quick start guide and integrated with Dialogflow.
I am able to send sms but when i try to make a outbound call its not working.
Below is the code snippet i am using to make a outbound call
.create({
to: number,
from: called
})
.then(call => {
console.log(call.sid)
});```
But its not making an outbound call.
With the below twiml param, i can see the call is connecting but i can't hear anything
```client.calls
.create({
twiml: '<Response><Connect><Stream url="wss://245a-14-200-112-162.au.ngrok.io/streams"></Stream></Connect></Response>',
to: number,
from: called
})
.then(call => {
console.log(call.sid)
});```
could you please suggest what am doing wrong here?
The text was updated successfully, but these errors were encountered:
Hi Team,
I took the connect-basic quick start guide and integrated with Dialogflow.
I am able to send sms but when i try to make a outbound call its not working.
Below is the code snippet i am using to make a outbound call
The text was updated successfully, but these errors were encountered: