Rust library for Standard Webhooks
Example
Verifying a webhook payload:
use Webhook;
let wh = new;
wh.verify.expect;
Rust library for Standard Webhooks
Verifying a webhook payload:
use standardwebhooks::Webhook;
let wh = Webhook::new(base64_secret);
wh.verify(webhook_payload, webhook_headers).expect("Webhook verification failed");