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

1
Cargo.lock generated
View file

@ -39,6 +39,7 @@ dependencies = [
"indoc",
"scraper",
"serde",
"serde-wasm-bindgen 0.6.5",
"serde_json",
"worker",
"worker-macros",

View file

@ -22,3 +22,4 @@ indoc = "2.0.5"
# We don't use getrandom, but we enable the "js" feature to enable
# WebAssembly support.
getrandom = { version = "0.2", features = ["js"] }
serde-wasm-bindgen = "0.6.5"

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?;
}