| Crates.io | boosty-rs |
| lib.rs | boosty-rs |
| version | 1.0.0 |
| created_at | 2024-02-23 09:30:35.787503+00 |
| updated_at | 2024-07-03 10:37:56.252013+00 |
| description | A Rust library for Boosty closed API |
| homepage | |
| repository | https://github.com/crptmem/boosty-rs |
| max_upload_size | |
| id | 1150392 |
| size | 13,477 |
A Rust library for Boosty closed API
$ cargo add boosty-rs
use std::error::Error;
use boosty_rs::request;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let response = request::fetch_posts("boosty".to_string(), None).await?;
println!("{:?}", response);
Ok(())
}
use std::error::Error;
use boosty_rs::request;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let response = request::fetch_post("boosty".to_string(), "a4dc61c8-4ff9-495b-946b-3982efef68fe".to_string(), None).await?;
println!("{:?}", response);
Ok(())
}
use std::error::Error;
use boosty_rs::request;
use boosty_rs::auth::Auth;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
let response = request::fetch_posts("boosty".to_string(), Auth::new("access_token".to_string())).await?;
println!("{:?}", response);
Ok(())
}