$jsonRequest
$jsonRequest
will send a GET request to a given URL.
Usage
$jsonRequest[URL;property?;error?;...header?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
URL | string | URL you want to get/send data to/from | true |
property? | string | Property to return (get method) | false |
error? | string | Error to return when request fails | false |
…header | object | Header as JSON | false |
Example(s)
This will return a random dog fact:
1client.command({2 name: "jsonRequest",3 code: `4 $jsonRequest[https://some-random-api.ml/facts/dog;fact;Something went wrong.]5 `6});