0%

使用python发送免费短信

首先在 twilio 上注册帐号,并申请一个 twilio 手机号,并认证自己的手机号,twilio只能给认证过的手机号发送短信。

使用 python 发送短信

1
2
3
4
5
6
7
8
9
10
11
12
from twilio.rest import Client

account_sid = <your account sid>
auth_token = <your auth token>
client = Client(account_sid, auth_token)

message=client.messages.create(
from_=<your twilio phone num>,
body=<your message>,
to=<your phone num>
)
print(message.sid)

注:试用版免费次数有限。