rbx_cookie

Crates.iorbx_cookie
lib.rsrbx_cookie
version0.1.4
sourcesrc
created_at2022-06-18 00:22:31.066711
updated_at2023-10-29 19:59:22.291057
descriptionAccess the ROBLOSECURITY cookie from your environment
homepagehttps://github.com/blake-mealey/mantle/tree/main/rbx_cookie
repositoryhttps://github.com/blake-mealey/mantle
max_upload_size
id608264
size36,399
Blake Mealey (blake-mealey)

documentation

README

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.

rbx_cookie --help

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
[dependencies]
rbx_cookie = { version = "<version>", default-features = false }
// Returns the cookie as a formatted header ready to add to a request
let cookie = rbx_cookie::get();

// Returns the raw cookie value
let cookie = rbx_cookie::get_value();
Commit count: 332

cargo fmt