正如我正在使用语音通话进行ChatBot我需要连接我的号码以拨打当前正在使用Twilio的其他号码,但问题是我试图从我的号码打电话到其他号码,它询问验证是否存在是一种方法来使这个没有任何验证使用python可以任何人帮助我.. 在此先感谢..
这是我的PY:
from twilio.rest import Client
# Your Account Sid and Auth Token can be found at https://www.twilio.com/console
account_sid = "##################################"
auth_token = "################################"
client = Client(account_sid, auth_token)
# Start a phone call
call = client.calls.create(
to="+9195555555555",
from_="+15555555555",
url="http://demo.twilio.com/docs/voice.xml"
)
print(call)
print(call.sid)
答案 0 :(得分:1)
Twilio开发者传道者在这里。
这是您的免费帐户的限制。 When you have a free account, you must verify any number that you call in your account。解决这个问题的方法是upgrade your account and add some credit。