mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-22 15:18:27 -04:00
15 lines
265 B
JavaScript
Executable File
15 lines
265 B
JavaScript
Executable File
var settings = {
|
|
"async": true,
|
|
"crossDomain": true,
|
|
"url": "http://mockbin.com/har",
|
|
"method": "POST",
|
|
"headers": {
|
|
"content-type": "text/plain"
|
|
},
|
|
"data": "Hello World"
|
|
}
|
|
|
|
$.ajax(settings).done(function (response) {
|
|
console.log(response);
|
|
});
|