Push to Slack Webhook

This commit is contained in:
SkyfallWasTaken 2024-07-01 19:36:17 +01:00
parent eb251ae927
commit 4c09b8e3cd
3 changed files with 6 additions and 4 deletions

View file

@ -64,11 +64,11 @@ async fn run_scrape(env: Env) -> Result<String> {
let request = Request::new_with_init(
&webhook_url,
RequestInit::new()
.with_body(json!({
"text": message,
}))
.with_body(Some(serde_wasm_bindgen::to_value(
&json!({ "text": message }),
)?))
.with_method(Method::Post),
);
)?;
Fetch::Request(request).send().await?;
}