philipp-r / bugtracker

Simple, responsive and highly customizable PHP issue tracking system. Bumpy-Booby fork
Other
1 stars 1 forks source link

IFTTT webhook API #11

Closed philipp-r closed 7 years ago

philipp-r commented 7 years ago

We should have an API that is compatible to IFTTT maker channel: https://ifttt.com/maker

This could then be connected to Twitter, GitHub, and so on.

Expected Behavior

When there is a new issue/comment trigger the IFTTT Maker channel.

Current Behavior

We have the RSS feed that could be used.

philipp-r commented 7 years ago

The settings in config file should be

$WEBHOOK_URL = "https://maker.ifttt.com/trigger";
$WEBHOOK_KEY = "with/key/KEY_FROM_CONFIG_FILE";

And the data is posted to this URL:

$url = $WEBHOOK_URL."/event_name/". $WEBHOOK_KEY

So you can also build your own triggers and do not have to use IFTTT.