mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 23:28:33 -04:00
14 lines
228 B
JavaScript
Executable File
14 lines
228 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);
|
|
});
|