📅  最后修改于: 2023-12-03 15:31:46.753000             🧑  作者: Mango
$get
roblox-api.online x?id=5904 - JavascriptThis is a JavaScript library for sending HTTP requests to the roblox-api.online API, specifically for accessing data for the x
resource with a given id
of 5904
.
This library can be installed via npm:
npm install roblox-api-online-x
To use this library, first import it into your file:
const $get = require('roblox-api-online-x');
Then, make a call to the x
resource with the given id of 5904
, like so:
$get('https://roblox-api.online/x/5904')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
This will send an HTTP GET request to https://roblox-api.online/x/5904
, and log the response data (assuming a successful request was made). If an error occurs, e.g. due to a network issue, the error will be logged instead.
This library is licensed under the MIT License.