Skip to content

Instantly share code, notes, and snippets.

@brunopulis
Last active September 24, 2019 17:10
Show Gist options
  • Save brunopulis/709614a80784e7fdb8b3b505239f0514 to your computer and use it in GitHub Desktop.
Save brunopulis/709614a80784e7fdb8b3b505239f0514 to your computer and use it in GitHub Desktop.
const URL = "http://swapi.co/api/people/1" // Retorna Luke Skywalker
fetch(URL)
.then(function(res){
res.json().then(function(data){
console.log(data);
});
})
.catch(function(err){
console.error('Não foi possível achar a informação', err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment