rbx_api 0.1.1

Make requests to Roblox's web APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# `rbx_api`

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

## Usage

```rs
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)?;
```