leodutra / ifttt-webhook

Simple async library for triggering IFTTT events using webhooks.

Home Page:https://ifttt.com/maker_webhooks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IFTTT Webhook

crate.io

A simple Rust async library for triggering IFTTT events using webhooks.

Installation

Installation can be performed using cargo add:

cargo add ifttt-webhook

Usage

use ifttt_webhook::IftttWebhook;
use std::collections::HashMap;

// IFTTT Webhook key, available under "Documentation"
// at https://ifttt.com/maker_webhooks/.
let ifttt_key = 'your_ifttt_webhook_key';

let webhook = IftttWebhook {
    key: ifttt_key,
    event: "event_name",
};

// this will trigger a GET to https://maker.ifttt.com/trigger/{event}/with/key/{key}
webhook.trigger(None).await;

The .trigger method can be used to pass values as shown in the example below:

use ifttt_webhook::IftttWebhook;

// IFTTT Webhook key, available under "Documentation"
// at https://ifttt.com/maker_webhooks/.
let ifttt_key = 'your_ifttt_webhook_key';

let mut values = HashMap::new();
values.insert("value1", "value_1_test_value");
values.insert("value2", "value_2_test_value");
values.insert("value3", "value_3_test_value");

let webhook = IftttWebhook {
    key: ifttt_key,
    event: "event_name",
};

// this will trigger a POST to https://maker.ifttt.com/trigger/{event}/with/key/{key}
webhook.trigger(Some(&values)).await;

Bugs and feedback

If you discover a bug please report it here. Express gratitude here.

Mail me at leodutra.br+foss@gmail.com, or on twitter @leodutra.

License

MIT @ Leo Dutra

About

Simple async library for triggering IFTTT events using webhooks.

https://ifttt.com/maker_webhooks

License:MIT License


Languages

Language:Rust 100.0%