mirror of
https://github.com/Kong/insomnia.git
synced 2026-06-17 20:40:07 -04:00
10 lines
228 B
JavaScript
Executable File
10 lines
228 B
JavaScript
Executable File
const fetchOptions = {
|
|
mode: 'cors',
|
|
method: 'GET',
|
|
headers: {},
|
|
};
|
|
|
|
fetch('http://mockbin.com/har?foo=bar&foo=baz&baz=abc&key=value', fetchOptions)
|
|
.then(response => response.json())
|
|
.then(data => console.log(data));
|