| 123456789101112131415161718192021222324252627282930 |
- // Non-blocking http request runs asynchronously.
- var request = new Atomic.WebRequest("GET", "https://httpbin.org/get", 0);
- // Add some request headers.
- request.setRequestHeader("Some-Special-Header", "Special header value");
- request.setRequestHeader("A-Magic-Header", "Magic header value");
- // Listen for the "complete" event to see when the response is complete.
- request.subscribeToEvent(Atomic.WebRequestCompleteEvent(function (event) {
- if (event.error) {
- // When something goes wrong, print the error, then return.
- console.log("Error:\n" + event.error);
- return;
- }
- // We're done, so print the response headers, then the content.
- // The getAllResponseHeaders() function gives a single string will all response headers.
- console.log("Headers:\n" + request.getAllResponseHeaders());
- // The "httpbin.org/get" call will show request headers in the response content.
- console.log("Content:\n" + event.download.readString());
- }));
- // Nothing happens until send() is called.
- console.log("Sending . . .\n");
- request.send();
|