Twilio帐户跟踪号

Twilio帐户跟踪号,twilio,Twilio,我是Twilio帐户的新手,一直在为我的帐户查找跟踪号码,但无法找到它 请给我一些帮助,让我知道找到它的步骤/链接 谢谢 Balaji常见问题解答向您简要介绍了如何使用该工具 一旦您“购买”了试用号(在试用期间不会花费任何费用),您可以: 并进行测试 你退房了吗?@philnash,谢谢你的回复。我试着在“买一个号码”部分得到一个试用号码。我认为这是一个真正的购买,这让我发布了这个问题。在试用帐户上,你可以购买一个号码,在试用期间不会花费任何费用。 # Download the Python h

我是Twilio帐户的新手,一直在为我的帐户查找跟踪号码,但无法找到它

请给我一些帮助,让我知道找到它的步骤/链接

谢谢
Balaji

常见问题解答向您简要介绍了如何使用该工具

一旦您“购买”了试用号(在试用期间不会花费任何费用),您可以:

并进行测试


你退房了吗?@philnash,谢谢你的回复。我试着在“买一个号码”部分得到一个试用号码。我认为这是一个真正的购买,这让我发布了这个问题。在试用帐户上,你可以购买一个号码,在试用期间不会花费任何费用。
# Download the Python helper library from twilio.com/docs/python/install
from twilio.rest import TwilioRestClient

# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
auth_token  = "your_auth_token"
client = TwilioRestClient(account_sid, auth_token)

call = client.calls.create(url="http://demo.twilio.com/docs/voice.xml",
    to="+1XXXXXXXXXX", # Number verified with Twilio for trial account.
    from_="+1XXXXXXXXXX") 

print(call.sid)
from twilio.rest import TwilioRestClient 

# put your own credentials here 
ACCOUNT_SID = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 
AUTH_TOKEN = "your_auth_token" 

client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN) 

client.messages.create(
    to="+1XXXXXXXXXX", # Number verified with Twilio for trial account.
    from_="+1XXXXXXXXXX", 
    body="This is the ship that made the Kessel Run in fourteen parsecs?", 
    media_url="https://c1.staticflickr.com/3/2899/14341091933_1e92e62d12_b.jpg"

)