rbx_auth
Constructs a headers map and cookie jar that can be passed to a reqwest
client to make authenticated
requests to Roblox APIs. Best used with the rbx_api
crate. Available as both a library and CLI.
Install with cargo install rbx_auth
.
sh
rbx_auth --help
```rs use rbx_auth::{RobloxAuth, WithRobloxAuth};
let auth = RobloxAuth::new().await?;
let client = reqwest::Client::builder() .useragent("Roblox/WinInet") .robloxauth(auth) .build()?; ```