Skip to content

Instantly share code, notes, and snippets.

@lmeulen
Created November 14, 2021 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmeulen/3cf376e772b94999d85a3bb2792410d1 to your computer and use it in GitHub Desktop.
Save lmeulen/3cf376e772b94999d85a3bb2792410d1 to your computer and use it in GitHub Desktop.
fia_doc_trigger
import requests
IFTTT_KEY = '<YOUR KEY HERE>'
def trigger_ifttt(trigger, data):
requests.post("https://maker.ifttt.com/trigger/" + trigger + "/with/key/" + IFTTT_KEY, data=data)
trigger_ifttt('FIA_document', {'value1': desc, 'value2': link})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment