Skip to content

Instantly share code, notes, and snippets.

@saylestyler
Created June 25, 2018 23:28
Show Gist options
  • Save saylestyler/4bb3b29038b53ce6b2220a155ac251c1 to your computer and use it in GitHub Desktop.
Save saylestyler/4bb3b29038b53ce6b2220a155ac251c1 to your computer and use it in GitHub Desktop.
fetch('/api/v2/person/trending').then(function(data) {
return data.json();
}).then(function(jsonData) {
console.log(jsonData);
}).catch(function(e) {
alert('There was a problem with the request');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment