0

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

1 回答 1

0

为了能够使用 twilio,您首先需要启用/配置 twilio 组件。自动化不会配置或启动 twilio 组件,它只是使用它。

您可以在twilio 组件页面上找到配置文档:

twilio:
  account_sid: ACCOUNT_SID_FROM_TWILIO
  auth_token: AUTH_TOKEN_FROM_TWILIO

在您配置它(并重新启动家庭助理)后,您的自动化应该能够通过它发送通知。

于 2017-03-20T14:05:38.340 回答