我刚刚开始使用Twilio。如果我使用默认的美国号码,我可以在印度发送消息吗? 使用python。
答案 0 :(得分:1)
Twilio开发者传道者在这里。
您应该可以使用美国的Twilio号码向印度发送消息。这里有一些注意事项和注意事项。
有关向印度发送限制的更多详情,请访问:https://support.twilio.com/hc/en-us/articles/223134167-Limitations-sending-SMS-messages-to-Indian-mobile-devices
最后,using Python to send SMS messages绝对是可能的。
我建议您安装Twilio helper library for Python。然后你需要的代码如下:
from twilio.rest import Client
# put your own credentials here
account_sid = "you_account_sid"
auth_token = "your_auth_token"
client = Client(account_sid, auth_token)
client.messages.create(
to=TO_NUMBER,
from_=YOUR_TWILIO_NUMBER,
body="Hello from Twilio!")