Search code examples
jsoncurlifttt

Can I post an image in json request to URL in IFTTT Maker Trigger?


Recently, IFTTT introduce its Channel Maker. You can trigger an action by send post request to a specific URL with a json(three key:value elements).

IFTTT Maker Documentation

It means by making your own trigger URL, you can easily post { "value1": "your first value", "value2": "your second value", "value3": "your third value" } data to trigger an action.

I have made an Applet to post some text value to the URL and create a note in my Evernote account with those text. To carry this idea further, I want to post images to create notes in Evernote.

So I am wondering if there is a way to send json request with images?


Solution

  • You may be able to use the maker service to add filter code which would allow you to pull the image into a stream, then post it that way, not sure, plan on trying soon.