Crates.io | rbx_api |
lib.rs | rbx_api |
version | 0.4.11-prerelease |
source | src |
created_at | 2022-06-18 21:50:57.938231 |
updated_at | 2024-10-14 13:58:37.197454 |
description | Make requests to Roblox's web APIs |
homepage | https://github.com/blake-mealey/mantle/tree/main/rbx_api |
repository | https://github.com/blake-mealey/mantle |
max_upload_size | |
id | 608705 |
size | 65,660 |
rbx_api
Make requests to Roblox's web APIs. Currently does not support any Open Cloud APIs.
use rbx_auth::RobloxAuth;
use rbx_api::RobloxApi;
let auth = RobloxAuth::new().await?;
let api = RobloxApi::new(auth)?;
api.upload_place("MyPlace.rbxl".into(), 123456)?;