-1

我目前正在尝试将 Twilio 与我的 Thingworx 平台一起使用,以在传感器被触发时发送短信。

当我将传感器设置为活动触发状态时,短信然后向我发送垃圾邮件并且在我手动将其设置为 false 之前不会关闭。

是否有脚本可以将 twilio 短信变为假,或者它向我发送垃圾邮件的原因?

谢谢

4

1 回答 1

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", 
)

正如上面 Phil 所说,您很可能将传感器作为循环的一部分进行检查,并且每次都发送。

于 2016-12-14T22:58:24.173 回答