mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
12 lines
237 B
JavaScript
Executable File
12 lines
237 B
JavaScript
Executable File
var settings = {
|
|
"async": true,
|
|
"crossDomain": true,
|
|
"url": "http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value",
|
|
"method": "GET",
|
|
"headers": {}
|
|
}
|
|
|
|
$.ajax(settings).done(function (response) {
|
|
console.log(response);
|
|
});
|