使用twilio库实现在特定条件下进行短信或电话提醒

官网( https://www.twilio.com)进行注册和手机验证,会获得属于你的SID和Token

设置中申请一个电话号码,短信和电话就会从这个电话号码发送或拨打到你的手机上来

代码如下

from twilio.rest import Client
# Your Account SID from twilio.com/console
account_sid = "ACc6097f7**********bb08892d05a34c"
# Your Auth Token from twilio.com/console
auth_token  = "209dfd44*********f8ba49e"


def sendMessage():
    client = Client(account_sid, auth_token)
    message = client.messages.create(
        from_='+157****2212',
        body='hello world',
        to='+86187****7569'
    )
    print(message.sid)

def callphone():
    client = Client(account_sid, auth_token)
    call = client.calls.create(
        to = "+86187****7569",
        from_ = "+157****2212",
        url = "http://demo.twilio.com/docs/voice.xml",
        method = "GET",
        status_callback="https://www.myapp.com/events",
        status_callback_method="POST",
        status_callback_event=["initiated", "ringing", "answered", "completed"]
    )
    print(call.sid)

# sendMessage()
callphone()

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值