mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-23 07:38:58 -04:00
12 lines
195 B
JavaScript
Executable File
12 lines
195 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);
|
|
});
|