{"id":20002636,"url":"https://github.com/leodutra/ifttt-webhook","last_synced_at":"2026-03-15T16:12:03.980Z","repository":{"id":62440510,"uuid":"311484680","full_name":"leodutra/ifttt-webhook","owner":"leodutra","description":"Simple async library for triggering IFTTT events using webhooks.","archived":false,"fork":false,"pushed_at":"2023-06-23T19:37:52.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-13T12:29:50.891Z","etag":null,"topics":["api","api-client","ifttt","ifttt-maker","ifttt-makerwebhooks","ifttt-webhooks","zapier"],"latest_commit_sha":null,"homepage":"https://ifttt.com/maker_webhooks","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leodutra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-09T22:48:55.000Z","updated_at":"2023-06-23T19:37:57.000Z","dependencies_parsed_at":"2022-11-01T21:53:20.690Z","dependency_job_id":null,"html_url":"https://github.com/leodutra/ifttt-webhook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leodutra%2Fifttt-webhook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leodutra%2Fifttt-webhook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leodutra%2Fifttt-webhook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leodutra%2Fifttt-webhook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leodutra","download_url":"https://codeload.github.com/leodutra/ifttt-webhook/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224395509,"owners_count":17304049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","api-client","ifttt","ifttt-maker","ifttt-makerwebhooks","ifttt-webhooks","zapier"],"created_at":"2024-11-13T05:22:31.413Z","updated_at":"2026-03-15T16:11:58.955Z","avatar_url":"https://github.com/leodutra.png","language":"Rust","funding_links":["https://patreon.com/leodutra"],"categories":[],"sub_categories":[],"readme":"# IFTTT Webhook\n\n[![crate.io](https://img.shields.io/crates/v/ifttt-webhook)](https://crates.io/crates/ifttt-webhook)\n\nA simple Rust async library for triggering IFTTT events using webhooks.\n\n## Installation\n\nInstallation can be performed using [`cargo add`](https://github.com/killercup/cargo-edit):\n\n```sh\ncargo add ifttt-webhook\n```\n\n## Usage\n\n```rust\nuse ifttt_webhook::IftttWebhook;\nuse std::collections::HashMap;\n\n// IFTTT Webhook key, available under \"Documentation\"\n// at https://ifttt.com/maker_webhooks/.\nlet ifttt_key = 'your_ifttt_webhook_key';\n\nlet webhook = IftttWebhook {\n    key: ifttt_key,\n    event: \"event_name\",\n};\n\n// this will trigger a GET to https://maker.ifttt.com/trigger/{event}/with/key/{key}\nwebhook.trigger(None).await;\n```\n\nThe `.trigger` method can be used to pass values as shown in the example below:\n```rust\nuse ifttt_webhook::IftttWebhook;\n\n// IFTTT Webhook key, available under \"Documentation\"\n// at https://ifttt.com/maker_webhooks/.\nlet ifttt_key = 'your_ifttt_webhook_key';\n\nlet mut values = HashMap::new();\nvalues.insert(\"value1\", \"value_1_test_value\");\nvalues.insert(\"value2\", \"value_2_test_value\");\nvalues.insert(\"value3\", \"value_3_test_value\");\n\nlet webhook = IftttWebhook {\n    key: ifttt_key,\n    event: \"event_name\",\n};\n\n// this will trigger a POST to https://maker.ifttt.com/trigger/{event}/with/key/{key}\nwebhook.trigger(Some(\u0026values)).await;\n```\n\n## Bugs and feedback\n\nIf you discover a bug please report it [here](https://github.com/leodutra/ifttt-webhook/issues/new).\nExpress gratitude [here](https://patreon.com/leodutra).\n\nMail me at leodutra.br+foss@gmail.com, or on twitter [@leodutra](http://twitter.com/leodutra).\n\n## License\n\nMIT @ [Leo Dutra](https://github.com/leodutra)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleodutra%2Fifttt-webhook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleodutra%2Fifttt-webhook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleodutra%2Fifttt-webhook/lists"}