Hi
I have got twilio set up on my HA. The issue I face now is that I cannot get Twilio to work with my automation. Here is how I have setup up my Twilio in my config.
twilio:
account_sid: ACd226d7d056e47f41790x257x0x845870
auth_token: 28b8x4ec4d9153620c8123xxx143x845
notify:
- name: me
platform: twilio_call
from_number: +441952780999
- alias: The sun has set
trigger:
platform: sun
event: sunset
action:
service: notify.me
data:
message: 'The sun has set'
target:
- +441952780999
The error I get in my log is :
2017-05-20 00:30:30 ERROR (MainThread) [homeassistant.config] Invalid config for [notify]: required key not provided @ data['platform']. Got None. (See /home/homeassistant/.homeassistan$
2017-05-20 00:30:31 WARNING (Thread-9) [homeassistant.components.emulated_hue] Listen IP address not specified, auto-detected address is 192.168.0.8
2017-05-20 00:30:31 WARNING (Thread-9) [homeassistant.components.emulated_hue] When targetting Google Home, listening port has to be port 80
2017-05-20 00:31:15 WARNING (MainThread) [homeassistant.components.media_player] Setup of platform cast is taking over 10 seconds.
2017-05-20 00:33:48 ERROR (MainThread) [homeassistant.core] Invalid service data for notify.me: required key not provided @ data['message']. Got None
2017-05-20 00:34:04 ERROR (MainThread) [homeassistant.core] Invalid service data for notify.me: required key not provided @ data['message']. Got None
Can someone please assist?
Thanks.