我的gcp服务器中有以下代码,该代码尝试连接到我的twilio api进行出站呼叫。它也为我工作,以接到一个电话。但是我的代码没有执行,除了跟踪帐户信息外,我在通话中没有任何声音。甚至我都有一个链接http://35.208.146.225/index.xml,我可以从外面访问它。但这也不适用于代码。我需要您的建议,我在这里住了1天。
我也使用了演示链接http://demo.twilio.com/docs/voice.xml。跟踪帐户信息后,同样的问题我的呼叫正在等待约5秒钟,并且断开连接。
我的目标是每当我的代码被推送时就从twilio帐户生成一个呼叫,该呼叫应呼叫经过验证的号码并在http://35.208.146.225/index.xml中告知我的内容。预先感谢
我正在使用我的试用帐户。
代码:
- hosts: localhost
become: false
gather_facts: false
tasks:
- name: " Generating call"
uri:
url: https://api.twilio.com/2010-04-01/Accounts/AC70edbdaeabf518ca84ed94f153b1c261/Calls.json
method: POST
user: AC70edbdaeabf518ca84ed94f153b1c261
password: ****************************
body_format: "form-urlencoded"
body:
Url: http://35.212.153.21/index.xml
To: "+**********"
From: "+12242689599"
return_content: yes
status_code: 201
validate_certs: False
register: Auth_Token
- debug:
msg: "{{Auth_Token}}"