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.
CLI
Install with cargo install rbx_auth.
Library
Disable default features to exclude the CLI dependencies with cargo add rbx_auth --no-default-features, or
use the default-features = false configuration:
# Cargo.toml
[]
= { = "<version>", = false }
use ;
let auth = new.await?;
let client = builder
.user_agent
.roblox_auth
.build?;