Skip to content

Instantly share code, notes, and snippets.

@albertoperezf
Created September 10, 2017 07:55
Show Gist options
  • Save albertoperezf/090da3d6a495f2343074557d8a59d8a2 to your computer and use it in GitHub Desktop.
Save albertoperezf/090da3d6a495f2343074557d8a59d8a2 to your computer and use it in GitHub Desktop.
Fetch petition to unsplash.com
fetch(`https://api.unsplash.com/search/photos?page=1&query=${searchedForText}`, {
headers: {
Authorization: 'Client-ID abc123'
}
}).then(response => response.json())
.then(addImage);
function addImage(data) {
debugger;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment