好的,所以我正在使用家庭助理在一天中的某些时间使用 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"