anflyg
1
Hi,
Trying to post fron Arduino via IFTTT to Twitter. It is working .. almost .. using GitHub - Rupakpoddar/ESP8266Webhook: Leverage IFTTT and the ESP8266 library to set off events via Webhook.. No payload is received by IFTTT, but the call is picked up.
Part of code used below.
int response = webhook.trigger("14 ", "grader ", "celsius");
// int response = webhook.trigger(String(getTemperature()));
delay(5000);
if(response == 200) {
Serial.println("OK");
}
else {
Serial.println("Failed");
}
Can't see what's wrong?
anflyg
2
No one who might know? Same problem trying to publish on wordpress, so the problem lies within pushing the data to IFTTT.
horace
3
can you post the complete code?
using IFTTT to send emails I used arduino-send-email as a starting point
anflyg
4
The problem was in the setup i IFTTT, not in the code, so now it is working.
system
Closed
5
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.