Skip to content

http.base64 Deprecated

INFO

Replaced by web.get

Performs a HTTP Request converting binary data into base64 String.

js
http.base64(url, method, data)
http.base64(url, method, data)

Parameters

  • url - the URL of the resource to download.
  • method - the method of the request (GET or POST).
  • data - the post data to send to the server.

Example

js
let doc = http.base64("https://example.com", "GET", "");
let doc = http.base64("https://example.com", "GET", "");