Giorgio6464
(Giorgio Parolini)
1
Hi. I’m a newbie for Home Assistant.
I’m having problems with a IFTTT Script.
I’m not able to trigger the IFTTT applet running a script.
Here the interested part of configuration.yaml.
ifttt:
key: xxxxxxxxxxxxxxxxxxxxxx
script:
fan_on:
sequence:
- service: ifttt.trigger
data: {“event”: ”Beppe”}
Can anybody help me to understand ?
Thank you.
Ciao.
Giorgio
Looks like you have the wrong type of quote characters. It should be:
script:
fan_on:
sequence:
- service: ifttt.trigger
data: {"event": "Beppe"}
Or I believe you can also write it this way:
script:
fan_on:
sequence:
- service: ifttt.trigger
data:
event: Beppe
Giorgio6464
(Giorgio Parolini)
3
GREAT !!!
Was the wrong type of quote characters.
Now it works.
Many Thanks pnbrukner.
Ciao.
Giorgio