最近遇到个需求,就是夜班HW希望有个监控系统指标,如果异常就向监控人手机打电话的需求。在考察以后,发现目前由于国内防电信诈骗的原因,所以想要使用云通讯功能必须由企业去申请,但作为一个个人的监控项目来说太大了。退而求其次的方案是使用短信,然后设置信息铃声响铃,同时单独把信息的振动改成铃声,通知不用改
可以在twilio的网站验证自己的手机号和免费申请虚拟的用来发信息的手机号:
https://console.twilio.com/us1/develop/phone-numbers/manage/verified?x-target-region=us1
from twilio.rest import Client
from twilio.base.exceptions import TwilioRestException
import time
# 你的账号SID和身份验证令牌
account_sid = 'ACfcts7a7ba966d2037315180f2fed332645b'
auth_token = '2a9f77a8cef76c5eea7b236cf8f5dd4da3b'client = Client(account_sid, auth_token)# 发短信的号码和接收短信的号码
from_number = '+12517322235'
to_number = '+12517322235'try:# 发送短信for i in range(0,100):time.sleep(5)message = client.messages.create(body="Hello, this is 545454a message from Twilio!",from_=from_number,to=to_number)print(f"Message SID: {message.sid}")except TwilioRestException as e:print(f"Twilio error: {e}")
except Exception as e:print(f"General error: {e}")