Questions tagged [ifttt]

For programming related questions around the IFTTT service and IFTTT Maker.

IFTTT is a free web-based service that allows users to create chains of simple conditional statements, called "Applets" which are triggered based on changes to other web services such as Gmail, Facebook, Instagram, and Pinterest. IFTTT is an abbreviation of "If This Then That."

Remember that questions on Stack Overflow should be about programming. With regards to IFTTT, your question should be about programming your custom endpoint or about Maker and not about Applets on IFTTT

217 questions
0
votes
1 answer

Why did I got a Bad Request message when I used curl to send ifttt maker web request?

As I mentioned at title. I use the following command in Windows 7 console with curl 7.51.0, the curl command return Bad Requests message to me: curl -X POST -H "Content-Type: application/json" -d '{"value1":"www.google.com"}'…
0
votes
0 answers

How can I change the RSS feed link for my IFTTT?

I have a site that I have set up a lot of Applets for in IFTTT. Now I have changed the domain for my site, and don't see how I can easily change the RSS-feed link (to the new domain) in IFTTT. If I go to https://ifttt.com/feed and then click on…
Preben
  • 1,277
  • 2
  • 11
  • 20
0
votes
1 answer

IFTTT Status check URL and Key

I am trying to implement the IFTTT in my website. I have created the Service. I have created the API for status and test setup check with given type, like API-> abc.com/api/ifttt/v1/status & abc.com/api/ifttt/v1/test/setup Using CI and routing for…
Purushottam zende
  • 552
  • 1
  • 6
  • 20
0
votes
1 answer

IFTTT Maker service and CloudMQTT

I am using CloudMQTT.com as MQTT broker. Now, for some reasons, I need to use Maker service of IFTTT.com and needs to send message on topic created on CloudMQTT. Problem is that Maker service only supports HTTP(s) end points and does not support…
MarsTelnet
  • 471
  • 7
  • 18
0
votes
2 answers

POST to IFTTT using Angular 2

I am trying to send a http POST to https://maker.ifttt.com/trigger/event_name/with/key/xxxxxxxxxxxxxxxxxxxxxxxxxxx using a IFTTT maker webhook using Angular 2. The request is being received but the body is not. post(): Promise { let…
Scott Condron
  • 1,902
  • 16
  • 20
0
votes
0 answers

I just created a google trigger from ifttt to google calendar How do i view the script

I just used ifttt to create a google trigger to add an event when i say something on google home it adds an event on my google calendar. How can I view the JSON script that creates the event?
0
votes
0 answers

IFTTT Applet not working

I have created a If This Then That applet whiche reads as follows: If new feed item matches 'Lecturer:' from https://dedekindsarmy.github.io/feed.xml, then send a direct message to @dedekindsarmy However, I published a trial post in my feed which…
Jsevillamol
  • 2,425
  • 2
  • 23
  • 46
0
votes
1 answer

How to send Values to Maker Channel on IFTTT with google scripts?

I am trying to use IFTTT Maker Channel to create a new text file in my dropbox, using Google Apps script. I mapped the "value1" and "value2" to the body of the file. Here is my sample code, without my api key. function sendFileToMaker(){ var…
Mullenb
  • 651
  • 6
  • 20
0
votes
1 answer

IFTTT Maker Channel - Send POST Request to ipv6 adress

Is ist possible to send POST requests to ipv6 addresses using the ifttt.com service? I found the maker channel but it doesn't seem to work (with ipv6 addresses). Here the request I want to send to my openhab system: POST…
Benjamin
  • 85
  • 1
  • 2
  • 11
0
votes
1 answer

Access Control Origin issue when trying to do $http.post to IFTTT in Ionic & Angular

I am having an issue while trying to perform a $http.post to the IFTTT maker channel. Below is the code I am using to perform the POST: $http.post( 'https://maker.ifttt.com/trigger/{my-event}/with/key/{my-key}', …
zsoflin
  • 373
  • 5
  • 17
0
votes
1 answer

how can we receive message from IFTTT to a java code and vise versa

how can we receive message from IFTTT to a java code and vise versa it may be restful webservice?
srinathshil
  • 93
  • 1
  • 2
  • 11
0
votes
1 answer

Need IFTTT recipe to send specific gmail attachments to specific dropbox folders

For example: Email arrives with subject "Report for domaina.com". It has an attachment. I want to setup the recipe to save domainareport.pdf to Dropbox under /reports/Domaina. I'd then create similar recipes for domainb, domainc, etc. Seems like…
sc123
  • 17
  • 4
0
votes
1 answer

Running Curl in Run Shell Script with arguments in Automator

I'm trying to send a curl command in Automator via the 'Run Shell Script', with arguments, but having no luck. I'm using /bin/bash and passing info as arguments. Here is my script but keep getting Bad Request from IFTTT. I get it's to do with not…
PJ Palomaki
  • 99
  • 4
  • 10
0
votes
2 answers

How can I put a Python function to sleep while still calling it (IFTTT)

I have a Python function set up to text me if my house gets above 30 degrees Celsius. The script also drives and LCD display that loops through various bits of weather info: house temp, humidity, outdoor conditions, and the times of…
0
votes
0 answers

Delete part of src after a certain character - IFTTT

I am using IFTTT with Wordpress, so every time that I create a post on reddit, the recipe creates a post on Wordpress.

Tackling…