function handleSuccess(){ const data = JSON.parse(this.responseText); const.log(data); } asyncRequestObject.onload = handleSuccess;
unsplash for developer
https://unsplash.com/developers
create an application
https://unsplash.com/oauth/applications
The New York Times for developers
https://developer.nytimes.com/
function addImage(){} const searchedForText = 'hippos'; const unsplashRequest = new XMLHttpRequest(); unsplashRequest.open('GET', 'https://api.unsplash.com/search/photos?page=1&query=${searchedForText}'); unsplashRequest.onload = addImage; unsplashRequest.send()
function addArticles(){} const articleRequest = new XMLHttpRequest(); articleRequest.onload = addArticles; articleRequest.open('GET', 'http://api.nytimes.com/svc/search/v2/articlesearch.json?q=${searchedForText}&api-key=<API-key-goes-here>'); articleRequest.send();