twilio-rs
twilio-rs copied to clipboard
Twilio library for Rust
This change allows users of this crate access to the `MessageStatus` enum by adding it to the public API. It also adds a little documentation with a link to the...
This is from a support thread with Twilio. I've cut the irrelevant parts. ========= Jun 14, 2023, 1:48 PM PDT Note that we do keep the port (if any) in...
There is an issue and patch #27 and #29 to migrate to Tokio 1.0. Please consider accepting this and republishing the crate. Or using the github funcitonality to archive the...
I have been tested with my personal project.
Is it possible to send a single message to multiple numbers at once? Was hoping to avoid repeated calls as I imagine that could cause rate limiting issues with a...
This is a modification to use https://github.com/samscott89/serde_qs for generating query string for Twilio. I'd like to expand this library in the future and this change allows to do it easily...
``` #[derive(Debug, Deserialize)] pub struct Call { from: String, to: String, sid: String, status: CallStatus, } ``` All fields are private and unable to be used.
1. Added one new `TwilioError `member to handle HTTP 400 error responses and to keep original error messages and codes. The problem was, that original error messages and error codes...
Currently if something goes wrong with the request (invalid numbers, whatever else) - the client just returns an http error status code, which makes it impossible to handle different types...