IFTTTWebhook icon indicating copy to clipboard operation
IFTTTWebhook copied to clipboard

DEPRECATED: Arduino SDK library for triggering IFTTT web hooks on ESP8266 and ESP32 processors

Results 11 IFTTTWebhook issues
Sort by recently updated
recently updated
newest added

If you have the error : ``` [E][ssl_client.cpp:33] handle_error(): SSL - Bad input parameters to function ``` When you put **debug** to **verbose**. This issue is not from the library...

Hi John, I'm a newbie with this amazing stuffs, and I was looking an easy way to record some values in my Google sheets. Everything I found looked so complicated...

Hi guys, I think there might be an issue triggering IFTTT events with this library currently. //Firing off the IFTTT event IFTTTWebhook hook(IFTTT_API_KEY, IFTTT_EVENT_NAME); hook.trigger(); This is my event to...

The single example in this library has include #include which obviously wont run for the ESP32 We can either include a IFDEF or create two separate files for ESP8266 and...

The GET implementation does not support values with spaces. The workaround would have been to percent-escape the value strings (replace spaces with %20, etc.), which is the approach intimated by...

When I'm trying to trigger a webhook with a value with a space in it, that doesn't work. IFTTT doesn't even register that my applet was called: - e.g.: `webhook.trigger("Hello...

Hi, Just to let you know that in the usage instructions of readme.md is included this line: IFTTTWeb webhook(YOUR_IFTTT_API_KEY, YOUR_IFTTT_EVENT_NAME); that should be: IFTTTWebhook webhook(YOUR_IFTTT_API_KEY, YOUR_IFTTT_EVENT_NAME); Fantastic library. Best Regards.

Hi, Im trying to send the temperature using the trigger via e-mail. I tried the examples and worked ok, I tried to send a char data[8] = "15.25"; and works...