Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Functions

function [string] get([string] url);
function [string] get([string] url,[string] credentialKey);

Examples

Make an http(https) connection to google and return response as an String

var response=http.get("https://google.com"); 

Make connection and authenticate using the credential key

var response=http.get("https://needAuthentication.com","saveCredentialKey"); 
  • No labels