| Crates.io | rsblox |
| lib.rs | rsblox |
| version | 0.0.1 |
| created_at | 2023-03-19 17:40:18.111058+00 |
| updated_at | 2023-03-19 17:40:18.111058+00 |
| description | A Rust library for the Roblox API. |
| homepage | https://github.com/royce-mathew/robloxapi. |
| repository | https://github.com/royce-mathew/robloxapi.git |
| max_upload_size | |
| id | 814588 |
| size | 21,646 |
rsblox is a async Rust roblox api wrapper; Fork of PythonicIconic's RbxAPI-rs.
TBA
Example of retrieving a given user, three different ways!
use rbxapi;
#[tokio::main]
async fn main() {
let cookie = "your_cookie";
let client = rbxapi::Client.new().cookie(cookie).await;
let my_user = client.current_user().await;
let str_user = client.user("builderman").await;
let int_user = client.user(156).await;
}