我有一个应用程序,我使用Twilio号码转发号码,如下所示,
@client = Twilio::REST::Client.new twilio_sid, twilio_token
@call = @client.account.calls.create(
from: twilio_number,
to: to_number,
method: 'GET',
url: "http://some_url",
:status_callback => "http://some_url/webhook-callback",
:status_callback_method => 'POST',
:status_callback_event => ['initiated', 'ringing', 'answered', 'completed']
)
"url:http://some_url"
为呼叫转发生成TwiML,例如
<?xml version=\"1.0\" encoding=\"UTF-8\"?>
<Response>
<Pause length=\"10\"></Pause>
<Play digits=\"#{from_number}#wwwwwwww1234#wwwwwww*72#wwwwww1#wwwwww#{to_number}#1#wwwwww\"></Play>
</Response>
所以现在我想使用另一个Twilio号而不是&#34; to_number&#34;然后将呼叫转发给多个号码。
我现在在做什么 1.使用Twilio号码呼叫RACF号码。 2.提供TwiML以将电话从Phone1转发到Phone2。
我想做什么 1.使用Twilio号码呼叫RACF号码。 2.提供TwiML以将来自Phone1的呼叫转发到第二个twilio号码。 3.将来电转接到第二个twilio号码到多个号码。