HTTP
The fetch method allows Frames.sh applications to perform calls to remote API endpoints. This is useful for fetching or managing remote data for use within a Frames.sh application. Below are the parameters for this method.
method
The method for the fetch call - valid methods are: POST, GET, PUT, & DELETE.
url
The url for the fetch call.
headers
The header for the fetch call. Example: content-type=application/json&authentication=Bearer <token> (this string is parsed within the application to fit the configured method).
options
The options for the fetch call that's included in the body of the request. Example: param1=data1¶m2=data2 (this string is parsed within the application to fit the configured method).
Fetch Response
The response of the fetch calls are filtered by JSON or raw text (csv). If the body of the response is a JSON text, the response will be served as a stringified JSON text to the application, all other types of responses are treated as text.
When the status of the response is not 200, an error is thrown and returned to the application.
Example Usage
Fetch Image
To fetch image from a given URL and obtain its Base64 data, the fetch_image
command can be used. On error, a placeholder image will be provided.
Questions?
Let us know on contact@frames.sh.
Last updated