IFTTT component missing in hass.io?

I have just set up hass.io on a new RPi3. All is going well but I have a problem with IFTTT. I cannot see ifttt.trigger in the services to call in the developer section.

I have a webhooks applet ready to go that I have tested by calling the URL directly and that works fine. I have also entered my ifttt key in the configuration.yaml file as required.

I have tried typing the call in manually (without aid of the drop down) and entered the required json and I get a message saying that ifttt/trigger was called but nothing happens at the IFTTT end.

Before getting the RPi, I actually did a dry run with Home Assistant on Win10 and Python and that had the ifttt.trigger and I got it working fine. But in hass.io it’s just missing… No services listed start with ”ifttt.”

Any advice much appreciated. Thanks in advance.

You need to add that to your configuration.
https://www.home-assistant.io/components/ifttt/

Hi. Thanks for responding. I have added

ifttt:
  key: <my_ifttt_key_is_here>

To my config file already. That’s all that is mentioned in the page you mentioned. I have restarted HA. No joy…

I also have errors like this in my log file.

2018-09-29 13:20:13 WARNING (MainThread) [homeassistant.core] Unable to find service ifttt/trigger

It looks like the whole service is missing, or not being loaded maybe?

Not being loaded most likely.
The error you are seeing are probably from an automation.

Somewhere over there you should see an “Error setting up component ifttt” with an error trace

Thanks!
I removed my one test automation and it’s working! :slight_smile:
My automation was working ok (shown below) so I wonder what I did wrong?! If you have any tips on how I might figure that out then that would be great, else I will just try a few things out.
Thanks again

- id: '1538216297513'
  alias: test light
  trigger:
  - entity_id: device_tracker.iphone_michael
    from: home
    platform: state
    to: not_home
  condition: []
  action:
    service: light.turn_off
    entity_id: light.parents_light

I feel like the instructions provided on this link are written from someone much more seasoned on the platform while in fact it may be one of the initial things a person does when they begin tooling with the platform.

The initial instructions for “Setting up the integration” seem as though they may be based on an earlier version of the software when there was a IFTTT integration section waiting to be configured. I seem to see something similar to what @Michaelrch was seeing when attempting this last year.