rbx_cookie
Finds the .ROBLOSECURITY cookie from either a ROBLOSECURITY environment variable or the authenticated
local Roblox Studio installation (works for Windows and MacOS). Available as both a library and CLI.
CLI
Install with cargo install rbx_cookie.
Library
Disable default features to exclude the CLI dependencies with cargo add rbx_cookie --no-default-features, or
use the default-features = false configuration:
# Cargo.toml
[]
= { = "<version>", = false }
// Returns the cookie as a formatted header ready to add to a request
let cookie = get;
// Returns the raw cookie value
let cookie = get_value;