서비스는 아주 잘 되는 것으로 보이나 문제점은 한국에서 지원이 안된다. (아주 치명적이다.)
그래도 어떻게 쓰는지는 한 번 적어놔야겠다.
from __future__ import unicode_literals
from twilio.rest import Client
account_sid = "AC...내가 받은 아이디"
auth_token = "273 내가 받은 인증코드"
client = Client(account_sid, auth_token)
message = client.messages.create(
body="Hello, I'm Younghwan Nam. I love you All. See you.",
to="+8210000000",
from_="+13399999999" # 발급받은 twilio 번호
)
print message.sid
댓글 없음:
댓글 쓰기