Functions
Code Block | ||
---|---|---|
| ||
[string] get([string] url);
[string] get([string] url,[string] credentialKey); |
Examples
Make an http(https) connection to google and return response as an String
Code Block | ||
---|---|---|
| ||
var response=http.get("https://google.com"); |
Make connection and authenticate using the credential key
Code Block | ||
---|---|---|
| ||
var response=http.get("https://needAuthentication.com","saveCredentialKey"); |
...