- Supported Skript Version
- 2.15
Requires Skript-Reflect
This Skript adds HTTP request functions to Skript, allowing you to send http requests without having to find an addon that only half works.
How to use:
Sending a POST Request:
Sending a GET Request:
This Skript adds HTTP request functions to Skript, allowing you to send http requests without having to find an addon that only half works.
How to use:
Sending a POST Request:
code_language.skript:
set {_headers::*} to "Content-Type:application/json" and "Authorization:Bearer token123"
httpRequest("https://example.com/route/", "POST", {_headers::*}, "Request Body Goes here")
code_language.skript:
set {_headers::*} to "Content-Type:application/json" and "Authorization:Bearer token123"
set {_response} to httpRequest("https://example.com/", "GET", {_headers::*}, "Request Body Goes here")