mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 15:18:27 -04:00
15 lines
312 B
JavaScript
Executable File
15 lines
312 B
JavaScript
Executable File
var data = null;
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.withCredentials = true;
|
|
|
|
xhr.addEventListener("readystatechange", function () {
|
|
if (this.readyState === this.DONE) {
|
|
console.log(this.responseText);
|
|
}
|
|
});
|
|
|
|
xhr.open("GET", "http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value");
|
|
|
|
xhr.send(data);
|