| Crates.io | rocketapi |
| lib.rs | rocketapi |
| version | 0.1.1 |
| created_at | 2024-09-12 19:13:12.355586+00 |
| updated_at | 2025-01-10 22:38:48.363367+00 |
| description | Unofficial RocketAPI Rust SDK for Instagram & Threads Private API 2024 |
| homepage | |
| repository | https://github.com/Allespro/rocketapi-rust |
| max_upload_size | |
| id | 1373067 |
| size | 37,823 |
This library provides a pure Rust interface for the RocketAPI.
To install rocketapi add in Cargo.toml
rocketapi = "0.1.1"
InstagramAPI example
use rocketapi::instagramapi::InstagramAPI;
use rocketapi::errors::RocketAPIError;
#[tokio::main]
async fn main() {
let mut instagram_api: InstagramAPI = InstagramAPI::new(
"Your API key",
std::time::Duration::from_secs(30)
);
let username:&str = "kanyewest";
match instagram_api.get_user_info(username).await {
Ok(result) => {
println!("Response: {:?}", result)
}
Err(RocketAPIError::BadResponse(msg)) => println!("{}", msg),
Err(RocketAPIError::NotFound(msg)) => println!("{}", msg),
Err(RocketAPIError::RequestError(msg)) => println!("{}", msg),
}
}
ThreadsAPI example
use rocketapi::threadsapi::ThreadsAPI;
use rocketapi::errors::RocketAPIError;
#[tokio::main]
async fn main() {
let mut threads_api: ThreadsAPI = ThreadsAPI::new(
"Your API key",
std::time::Duration::from_secs(30)
);
let user_id: u64 = 65107478842;
match threads_api.get_user_feed(&user_id, None).await {
Ok(result) => {
println!("Response: {:?}", result)
}
Err(RocketAPIError::BadResponse(msg)) => println!("{}", msg),
Err(RocketAPIError::NotFound(msg)) => println!("{}", msg),
Err(RocketAPIError::RequestError(msg)) => println!("{}", msg),
}
}
See the documentation for more information.