Twilio Test crredentials를 사용하고 있습니다. o 이미 확인 된 전화 번호로 샘플 SMS 메시지를 보냅니다. 이 스크립트를 실행하면 SID가 반환되고 예상대로 작동하지 않는 것처럼 보입니다. 내게받은 메시지가 없습니다. 무엇이 없습니까?Twilio Test Credential이있는 SMS가 작동하지 않습니다.
from twilio.rest import Client
# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "AC3196c6a6fchha5de2c64a57e453e8e4b35"
auth_token = "fa1b7f6fdf3384ece5f5eda67cf7b42e28b"
client = Client(account_sid, auth_token)
message = client.messages.create(
to = "+12068515737",
from_ = "+15005550006",
body = "Jenny please?! I love you <3")
print(message.sid)