-1
Twilioアカウントを初めて使用していて、自分のアカウントのトレイル番号を見つけ出せませんでしたが、見つけられませんでした。Twilioアカウントのトレイル番号
手順/リンクを確認するための助けを得ることができます。 バラジ
Twilioアカウントを初めて使用していて、自分のアカウントのトレイル番号を見つけ出せませんでしたが、見つけられませんでした。Twilioアカウントのトレイル番号
手順/リンクを確認するための助けを得ることができます。 バラジ
おかげでよくある質問はあなたにどのようにtrial worksの荒廃を与えます。
あなた「購入」あなたの試行回数(それはあなたのトライアルの期間中、あなたに何も費用は一切かかりません)、あなたはmake callsできるようになると:テストへ
# 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)
とsend sms。
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"
)
[Twilioコンソールの受信番号]セクション(https://www.twilio.com/console/phone-numbers/incoming)をチェックしましたか? – philnash
@philnash、ありがとうございました。私は試用版を入手するために「Buy a Number」セクションの下で試しました。私はそれが私にこの質問を投稿させた本当の購入だと思った。 –
トライアルアカウントでは、1つの番号を購入することができ、試用期間中は何の費用もかかりません。 – philnash