好的,所以我使用家庭助理在一天中的某些时间使用twilio api自动发送消息。
https://home-assistant.io/getting-started/troubleshooting-configuration/
这一切都在configuration.yaml文件中完成,所以这是我的样子:
notify:
- name: Cody Wirth
platform: twilio_sms
account_sid: AC8a4f2f40331bdad5c95265f2cefe26a2
auth_token: 33a693e18dcad513d4791c51f1071227
from_number: "+16142896777"
automation:
- alias: Send message at a given time
trigger:
platform: time
hours: 24
minutes: 47
seconds: 15
action:
service: notify.twilio_sms
data:
message: 'The sun has set'
target:
- "+16147059227"
我的语法有什么问题吗?我是否需要在Twilio端配置以使消息通过我的手机?当我自动发送消息时,什么都没发生。
好的,所以这是它返回的错误:
"17-01-12 08:17:44 WARNING (MainThread) [homeassistant.core] Unable to find service notify/twilio_sms"
答案 0 :(得分:0)
为了能够使用twilio,首先需要启用/配置twilio组件。 自动化不配置或启动twilio组件,它只是使用它。
您可以在twilio component page上找到配置文档:
twilio:
account_sid: ACCOUNT_SID_FROM_TWILIO
auth_token: AUTH_TOKEN_FROM_TWILIO
配置完成后(并重新启动主助手),您的自动化应该可以通过它发送通知。