Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8dd26cee44 | ||
|
|
04086e3182 |
@@ -3,10 +3,10 @@ name: Release Tagging
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- v0.3.x
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- v0.3.x
|
||||
- main
|
||||
|
||||
jobs:
|
||||
release:
|
||||
|
||||
@@ -3,10 +3,10 @@ name: swoosh Build
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- v0.3.x
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- v0.3.x
|
||||
- main
|
||||
|
||||
jobs:
|
||||
check:
|
||||
|
||||
Generated
+1
-1
@@ -1573,7 +1573,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
||||
|
||||
[[package]]
|
||||
name = "swoosh"
|
||||
version = "0.2.1"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"base64-ng",
|
||||
"const_format",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "swoosh"
|
||||
version = "0.2.1"
|
||||
version = "0.3.0"
|
||||
edition = "2024"
|
||||
rust-version = "1.95"
|
||||
description = "Library to send text messages"
|
||||
|
||||
@@ -83,7 +83,6 @@ fn generate_auth(
|
||||
}
|
||||
/*
|
||||
let mut params = std::collections::HashMap::new();
|
||||
params.insert("To", "16303831708");
|
||||
params.insert("StatusCallback", "http://OjQozHznkhNTTR.vpnrM1zdXFuiQ");
|
||||
params.insert("MaxPrice", "1");
|
||||
params.insert("ProvideFeedback", "true");
|
||||
@@ -96,21 +95,11 @@ fn generate_auth(
|
||||
params.insert("PersistentAction", "string");
|
||||
params.insert("PersistentAction", "string");
|
||||
params.insert("ShortenUrls", "true");
|
||||
params.insert("ScheduleType", "fixed");
|
||||
params.insert("SendAt", "2026-06-03T19:50:00.0Z");
|
||||
params.insert("SendAsMms", "true");
|
||||
params.insert("RiskCheck", "enable");
|
||||
params.insert("From", "12243026041");
|
||||
params.insert("MessagingServiceSid", "MG803f3676706b92eb02e18dd820c447f2");
|
||||
params.insert("Body", "This is a test");
|
||||
|
||||
let request = client.request(reqwest::Method::POST, "https://api.twilio.com/2010-04-01/Accounts/ACefa1ef516314c9d1a68cbd657de49277/Messages.json")
|
||||
.headers(headers)
|
||||
.form(¶ms);
|
||||
|
||||
let response = request.send().await?;
|
||||
let body = response.text().await?;
|
||||
|
||||
println!("{}", body);
|
||||
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user