在本教程中,我们将学习如何发送短信的Python的。我们将使用Twilio发送短信。
首先,转到Twilio并创建一个帐户。您将获得免费的试用帐户。并完成设置。
我们必须安装一个名为twilio的模块才能与Twilio客户端一起使用。使用以下命令进行安装。
pip install twilio
现在,转到有关如何使用Twilio客户端发送SMS的Twilio文档。或按照步骤发送SMS。
从twilio.rest导入twilio客户端。
从您的Twilio帐户获取并存储account_sid和auth_token。
通过传递account_sid和auth_token来创建Client的实例。
现在,得到了从您的Twilio帐户号码。
现在,使用client.messages.create(body = message,from_ = from_number,to = verified_number)发送消息。
您将收到消息。
# importing the client from the twilio from twilio.rest import Client # Your Account Sid and Auth Token from twilio account account_sid = [ACCOUNT_SID] auth_token = [AUTH_TOKEN] # instantiating the Client client = Client(account_sid, auth_token) # sending message message = client.messages.create(body='Hi there! How are you?', from_=[FROM_NUM , to=[VERIFIED_NUMBER]) # printing the sid after success print(message.sid)
如果消息发送成功,那么您将获得如下的哈希码,没有任何
SMd954e170ca2545248075c3bc2623aabd
如果您对本教程有任何疑问,请在评论部分中提及。