Page 4 of 5

Re: IFTTT Action plugin

PostPosted: Sun Jan 06, 2019 4:35 pm
by FlyingDiver
jtburgess wrote:
But it seems there is only an IFTTT "action", I cannot use it as a "Trigger".
Will IFTTT triggers be implemented?


You can use the HTTPd plugin to trigger actions in Indigo based on an IFTTT event.

http://www.indigodomo.com/pluginstore/62/

Re: IFTTT Action plugin

PostPosted: Sat Jan 12, 2019 10:36 am
by jltnol
So I saw this device in a write up about CES

https://lametric.com/en-US/time/overview

and noticed that it has some degree of IFTTT implementation. I know no one can promise me anything, but does it seem possible for Indigo to send data/info to IFTTT, and from there to this device?

I messed with IFTTT long before Indigo, but once I started with this software, I left it by the wayside for the most part. But it would be nice to be able to send data from Indigo and have it displayed on this device...


Anyone have any thoughts ?

Re: IFTTT Action plugin

PostPosted: Sat Jan 12, 2019 11:44 am
by FlyingDiver
Sure looks like it's possible, but impossible to be sure without having a device to activate an account with. Without an account, I can't see what actions IFTTT can actually do with the device.

Amazon has it at a discount. I might pick one up to try. If it doesn't work, I can return it.

Though for the price, the Echo Show seems like a much better device. Or the Dot, which is a lot cheaper.

Re: IFTTT Action plugin

PostPosted: Sat Jan 12, 2019 12:32 pm
by jltnol
Thanks

I'll check the other options out.

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 6:58 pm
by hwitten
Trying to install.
Is the Indigo Maker Channel now webhooks? That's where the link in docs goes to. (https://ifttt.com/maker_webhooks).
The Webhooks API key is to be used?

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 7:00 pm
by FlyingDiver
hwitten wrote:
Trying to install.
Is the Indigo Maker Channel now webhooks? That's where the link in docs goes to. (https://ifttt.com/maker_webhooks).
The Webhooks API key is to be used?


Yeah, they renamed it.

The API key is used when making http calls TO IFTTT. Not web hooks called from IFTTT.

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 7:04 pm
by hwitten
Thanks. Currently just going 'to' IFTTT. Trying to control my AutoMower, to park it based on rainfall.

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 7:42 pm
by hwitten
Is there a way I can turn more debug on?

Action is logged in Indigo Event Log but not getting to IFTTT
I have a WebHook called Raining so as to avoid spaces issues.
I can trigger using curl from command line and also via a browser.

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 8:00 pm
by FlyingDiver
You could try a Python script instead of the plugin. This does the same thing the plugin does:

Code: Select all
import requests

requests.get("https://maker.ifttt.com/trigger/<ACTION>/with/key/<API-KEY>")

Re: IFTTT Action plugin

PostPosted: Wed Jun 26, 2019 8:25 pm
by hwitten
Thank you. Script works great.

IFTTT Action plugin

PostPosted: Fri Aug 02, 2019 4:27 pm
by Pacoramique
Hello everyone,

This is my first IFTTT Action plugin install with Indigo. I create my IFTTT account and create my first applet.

The step by step i Indigo plugin store says at point 4 : "In the configuration window, you need to enter an API key for your IFTTT maker channel. To get one of these, you need to first connect to the Maker channel at https://ifttt.com/maker/ then the page should show "Your key is" and a key which you can copy and paste into the configuration window in Indigo."

BUT https://ifttt.com/maker/ return a 404 error page. I search in help and documentation but can't find my App API Key(s).

Any suggestion ?

regards

Re: IFTTT Action plugin

PostPosted: Fri Aug 02, 2019 4:29 pm
by FlyingDiver
Go to https://ifttt.com/maker_webhooks and then click on "Documentation".

Re: IFTTT Action plugin

PostPosted: Wed Jun 03, 2020 5:49 pm
by dkillmer
I just installed this plugin and added my API KEY. I created a trigger and added the action “Trigger Event (IFTTTAction Actions)” with my event name (no spaces). When I fire the trigger I can see it in the event log but there is no event log entry that anything happened with this action. Any suggestions?

Re: IFTTT Action plugin

PostPosted: Wed Jun 03, 2020 6:10 pm
by FlyingDiver
dkillmer wrote:
I just installed this plugin and added my API KEY. I created a trigger and added the action “Trigger Event (IFTTTAction Actions)” with my event name (no spaces). When I fire the trigger I can see it in the event log but there is no event log entry that anything happened with this action. Any suggestions?


What is your IFTTT action supposed to do?

You'll have to look at the IFTTT side of things. Unless your IFTTT action is supposed to trigger something in Indigo, I would not expect to see anything other than the trigger firing.

Re: IFTTT Action plugin

PostPosted: Wed Jun 03, 2020 7:19 pm
by dkillmer
I see. I am using Webhooks to trigger a message from IFTTT. I confirmed the event name in IFTTT matches the event name in the Indigo trigger and I am not passing any values. The Webhook I created says it is active and it has never run. Thanks for your help!