Skip to content

Instantly share code, notes, and snippets.

@jmlavoier
Created September 29, 2017 01:39
Show Gist options
  • Save jmlavoier/5758e0ff1eefca38124674c4bce1fd7f to your computer and use it in GitHub Desktop.
Save jmlavoier/5758e0ff1eefca38124674c4bce1fd7f to your computer and use it in GitHub Desktop.
fetch('https://swapi.co/api/people/', {
credentials: 'same-origin'
}).then((res) => res.json())
.then((result) => { console.log(result) })
.catch((err) => { console.log(err) });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment