mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 15:18:27 -04:00
12 lines
204 B
JavaScript
Executable File
12 lines
204 B
JavaScript
Executable File
var settings = {
|
|
"async": true,
|
|
"crossDomain": true,
|
|
"url": "https://mockbin.com/har",
|
|
"method": "GET",
|
|
"headers": {}
|
|
}
|
|
|
|
$.ajax(settings).done(function (response) {
|
|
console.log(response);
|
|
});
|