Skip to content

Instantly share code, notes, and snippets.

@thegabrielstein
Last active August 27, 2022 16:02
Show Gist options
  • Save thegabrielstein/02b1fb5c8c6285e41f1826d3d06ed7c8 to your computer and use it in GitHub Desktop.
Save thegabrielstein/02b1fb5c8c6285e41f1826d3d06ed7c8 to your computer and use it in GitHub Desktop.
javascript:
var http = new XMLHttpRequest();
var url = "https://maker.ifttt.com/trigger/{event}/with/key/{key}";
http.open("POST", url, true);
http.send(JSON.stringify({"value1": "test"}));
@dieseitenwerkstatt
Copy link

Is this working for you? I can use the bookmarklet and it will trigger IFTTT, but my result is lacking value1. I am trying to send the URL of the actual website to IFTTT and from there to a trello-like tool called meistertask.
So, is value1 working for you?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment