Twilio - How to dial third party number and add him to conference?

和自甴很熟 提交于 2019-12-29 07:10:09

问题


I am facing a small problem while using Twilio conference.

My API gets incoming call and puts caller to new and empty conference room:

<Response>
    <Dial>
        <Conference waitUrl="http://twimlets.com/holdmusic?Bucket=com.twilio.music.ambient">Conf 1</Conference>
    </Dial>
</Response>

So I got caller waiting in an empty conference room and listening music.
I want to dial some other number and to add it to this confrence room.
That number is non-twilio.
How can I do this?


回答1:


You could use the Twilio REST API to make an outbound call, and direct that call into your conference room. In PHP this can be done like this:

(This is from the twilio-php helper library)

require('/path/to/twilio-php/Services/Twilio.php');

$client = new Services_Twilio($sid, $token);
$call = $client->account->calls->create(
  'some-twilio-number', // From a valid Twilio number
  'other-number-to-call', // Number to call
  'http://example.com/some_twiml'
);

The URL you use here should serve TwiML that puts the caller into the same room as your original call (exactly as you have in your question). In effect, one person called you, then you called the other person and put them into the same room.

(In the interests of full disclosure, I worked for Twilio.)



来源:https://stackoverflow.com/questions/16170388/twilio-how-to-dial-third-party-number-and-add-him-to-conference

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!