mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 15:18:27 -04:00
15 lines
279 B
JavaScript
Executable File
15 lines
279 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", "https://mockbin.com/har");
|
|
|
|
xhr.send(data);
|