Hello,
Here you have a total newbie, but I’m learning every day I have followed this guide, but every time I try it Google Assistant answers me: “OK, cleaning the kitchen”, but nothing happens. When I look in the activity log at Webhooks it says, “Applet skipped” and “Unable to make web request: Error: ETIMEDOUT”. I believe that the problem could be in my configuration.yaml, automations.yaml and the URL in Webhooks.
configuration.yaml
ifttt:
key: MyKeyfromWebhooks
http:
base_url: https://MyDNS.duckdns.org:8123
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
automations.yaml
- alias: Recieve information from IFTTT
trigger:
platform: event
event_type: ifttt_webhook_received
event_data:
action: call_service
action:
service_template: '{{ trigger.event.data.service }}'
data_template:
entity_id: '{{ trigger.event.data.entity_id }}'
URL in Webhooks:
https://MyDNS.duckdns.org:8123/api/webhook/MyKeyfromWebhooks
Could anyone please help me?