Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pass data to IFTTT WebHook?

I have a task to add row into Google Sheet when WebHook received. Now I'm trying to setup IFTTT but have some problem It says that I should use URL like https://maker.ifttt.com/trigger/{event}/with/key/{my_key} and that is ok I can do it. But it needs to send some data in request and the only way my system can do it appends it to query string like https://maker.ifttt.com/trigger/{event}/with/key/{my_key}?name1=Alex&name2=Helen

But IFTTT doesn't see my data. it says that it can see data in attached JSON but I can't use JSON.

So is there any way to pass my data to IFTT in a query string or shell I forgot IFTTT and investigate how to connect directly to Google Sheet?

like image 492
GhostKU Avatar asked Aug 04 '17 11:08

GhostKU


1 Answers

IFTTT Maker webhooks can only take data with keys of "value1", "value2", and "value3". Try sending it with:

https://maker.ifttt.com/trigger/{event}/with/key/{my_key}?value1=Alex&value2=Helen
like image 85
silvamerica Avatar answered Sep 28 '22 09:09

silvamerica