Crates.io | signalwire |
lib.rs | signalwire |
version | |
source | src |
created_at | 2024-12-20 15:18:06.218549+00 |
updated_at | 2025-01-12 03:07:44.881947+00 |
description | The unofficial SignalWire SDK for Rust. |
homepage | https://tragdate.ninja |
repository | https://github.com/ZmoleCristian/signalwire |
max_upload_size | |
id | 1490272 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
The unofficial SDK for interacting with SignalWire's API using Rust. This library currently provides methods for authentication and managing phone numbers as it's still in development.
Add the following to your Cargo.toml
:
[dependencies]
signalwire = "0.1.5"
dotenv = "0.15.0"
tokio = { version = "1.42.0", features = ["full"] }
or install with cargo, in the root of your project:
cargo add signalwire
or you can request the blocking version:
[dependencies]
signalwire = { version = "0.1.5", features = ["blocking"] }
cargo add signalwire --features=blocking
You can use environment variables to manage sensitive data. Create a .env file in your project root:
SIGNALWIRE_SPACE_NAME=your_space_name
SIGNALWIRE_PROJECT_ID=your_project_id
SIGNALWIRE_API_KEY=your_api_key
use signalwire::{client::SignalWireClient, errors::SignalWireError};
use dotenv::dotenv;
use std::env;
#[tokio::main]
async fn main() -> Result<(), SignalWireError> {
dotenv().ok();
let space_name = env::var("SIGNALWIRE_SPACE_NAME").expect("Missing space name");
let project_id = env::var("SIGNALWIRE_PROJECT_ID").expect("Missing project ID");
let api_key = env::var("SIGNALWIRE_API_KEY").expect("Missing API key");
let client = SignalWireClient::new(&space_name, &project_id, &api_key);
// Example: Get JWT
let jwt_response = client.get_jwt().await?;
println!("JWT Token: {}", jwt_response.jwt_token);
Ok(())
}
let client = SignalWireClient::new(&space_name, &project_id, &api_key);
let query_params = PhoneNumberAvailableQueryParams::new().build();
let available_numbers = client.get_phone_numbers_available("US", &query_params).await?;
println!("Available numbers: {:?}", available_numbers);
let client = SignalWireClient::new(&space_name, &project_id, &api_key);
let query_params = PhoneNumberOwnedFilterParams::new().build();
let owned_numbers = client.get_phone_numbers_owned(&query_params).await?;
println!("Owned numbers: {:?}", owned_numbers);
The SDK provides a custom error type, SignalWireError , to handle various error scenarios, such as:
This project is licensed under the BSD-3-Clause License
Contributions are welcome! Please open an issue or submit a pull request.
For questions or feedback, reach out to chiarel@tragdate.ninja