我正在尝试使用Twilio和我的Thingworx平台在传感器被触发时发送短信。
当我将传感器设置为活动触发状态时,sms消息然后向我发送垃圾邮件,并且在我手动将其设置为false之前不会关闭。
是否有一个脚本可以将twilio sms变为false,或者是为什么它会向我发送垃圾邮件?
谢谢
答案 0 :(得分:0)
发送短信的代码应如下所示:
https://www.twilio.com/docs/api/rest/sending-messages
from twilio.rest import TwilioRestClient
# put your own credentials here
ACCOUNT_SID = "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
AUTH_TOKEN = "your_auth_token"
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
client.messages.create(
to="+15558675309",
from_="+15017250604",
body="This is the ship that made the Kessel Run in fourteen parsecs?",
media_url="https://c1.staticflickr.com/3/2899/14341091933_1e92e62d12_b.jpg",
)
正如菲尔上面所述,您可能正在检查传感器作为循环的一部分,并且每次都只是发送。