mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-23 07:38:58 -04:00
14 lines
240 B
JavaScript
Executable File
14 lines
240 B
JavaScript
Executable File
var settings = {
|
|
"async": true,
|
|
"crossDomain": true,
|
|
"url": "http://mockbin.com/har",
|
|
"method": "POST",
|
|
"headers": {
|
|
"cookie": "foo=bar; bar=baz"
|
|
}
|
|
}
|
|
|
|
$.ajax(settings).done(function (response) {
|
|
console.log(response);
|
|
});
|