Learn a new cat fact
Submitted by:
Junaid
This Function returns a random fact about cats from catfact.ninja
1
2
3
4
5
6
7
8
9
10
// Set the URL
const config = {
url: "https://catfact.ninja/fact",
};
//Get the response
const response = await Functions.makeHttpRequest(config);
// Send the repsonse upstairs
return Functions.encodeString(response.data.fact);
