Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
/ RBXRequests Public archive

An HTTP requests module for Roblox designed with control and flexibility in mind.

License

Notifications You must be signed in to change notification settings

astriaInight/RBXRequests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RBXRequests

An HTTP requests module for Roblox designed with control and flexibility in mind.

Documentation

Module documentation here

Features

1. Cookies

RBXRequests supports setting cookies for each request, opening up many possibilities, such as ranking Roblox users in a group, interacting with a Roblox account, or signing into many other services.

2. Headers

Though, the built-in HTTPService already supports setting headers, this module is designed to make the experience even more intuitive.

3. Ease of use

Most functions in this module include a single, simple dictionary as a parameter for requests. This dictionary should include a URL, headers (optional), and cookies, (optional).

data dictionary example

4. Access roblox.com links

Thanks to the help of rprxy by sentanos, we have been able to easily bypass some of the restrictions of HttpService

rprxy url

rprxy about

5. Easier JSON management

JSON data is automatically converted into a Lua table/dictionary if detected. This removes the need to decode JSON yourself.