Compare commits
6
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb07761c25
|
||
|
|
b85b329ea5
|
||
|
|
c9d167da8d
|
||
|
|
eeb46dc84d
|
||
|
|
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.1"
|
||||
dependencies = [
|
||||
"base64-ng",
|
||||
"const_format",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "swoosh"
|
||||
version = "0.2.1"
|
||||
version = "0.3.1"
|
||||
edition = "2024"
|
||||
rust-version = "1.95"
|
||||
description = "Library to send text messages"
|
||||
|
||||
+7
-11
@@ -1,5 +1,12 @@
|
||||
pub mod types;
|
||||
|
||||
pub async fn response_to_json(response: reqwest::Response) -> serde_json::Value {
|
||||
match response.json().await {
|
||||
Ok(json_body) => json_body,
|
||||
Err(_err) => serde_json::Value::Null,
|
||||
}
|
||||
}
|
||||
|
||||
pub async fn send_mssage(
|
||||
msg: &textsender_models::message::Message,
|
||||
contact: &textsender_models::contact::Contact,
|
||||
@@ -83,7 +90,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 +102,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