rbx_api

Crates.iorbx_api
lib.rsrbx_api
version0.4.11-prerelease
sourcesrc
created_at2022-06-18 21:50:57.938231
updated_at2024-10-14 13:58:37.197454
descriptionMake requests to Roblox's web APIs
homepagehttps://github.com/blake-mealey/mantle/tree/main/rbx_api
repositoryhttps://github.com/blake-mealey/mantle
max_upload_size
id608705
size65,660
Blake Mealey (blake-mealey)

documentation

README

rbx_api

Make requests to Roblox's web APIs. Currently does not support any Open Cloud APIs.

Usage

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)?;
Commit count: 332

cargo fmt