Runtime/configurable IFTTT Maker Webhooks URL?


#1

1) Give a description of the problem

Currently the IFTTT Maker Webhooks URL is configured globally under settings/integration. It does not appear to be a way to overwrite the global value at the piston or task level.

2) What is the expected behaviour?

If overriding is possible, would like an example on how to achieve this. If not, it would be great to be able to define or override the IFTTT Maker Webhooks URL at the piston or task level.


#2

Any piston should be able to execute any URL… based on webCoRE’s logic.


#3

Use a simple GET request with the webhook url. In WebCore, use a ‘Make a Web Request’ task instead of using ‘Send IFTT Maker event…’

To find the url, login to IFTT, under the webhooks channel documentation, you will find a url with your key. Follow that format to setup the webrequest in webcore.

Should look like:
https://maker.ifttt.com/trigger/{event}/with/key/XXXXXXXXXXXXXXXXXXXXXXX

{event} being the Event Name you used to setup your applet.
Remove the brackets when replacing with your event name


#4

Yes, it works. Thank you so much!