mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-23 07:38:58 -04:00
15 lines
278 B
JavaScript
Executable File
15 lines
278 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);
|