Skip to content

Instantly share code, notes, and snippets.

@MgenGlder
Created July 7, 2017 18:20
Show Gist options
  • Save MgenGlder/7b5e35b4d4cf2145a26501d817ec8d63 to your computer and use it in GitHub Desktop.
Save MgenGlder/7b5e35b4d4cf2145a26501d817ec8d63 to your computer and use it in GitHub Desktop.
Example http client
var httpClient : HTTPClient = new HTTPClient();
var message : String;
httpClient.setTimeout(timeout || 20000);
httpClient.open('GET', crossSiteRequest, "storefront", password);
httpClient.send();
if (httpClient.statusCode == 200) {
message = httpClient.text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment