fetch(`https://www.flickr.com/services/rest/?method=flickr.photosets.getPhotos
&api_key=9f91468a4bda7a8e56c49d3e1b98fb49
&photoset_id=72177720334803422
&format=json
&nojsoncallback=1`)
.then(res => res.json())
.then(data => {
console.log(data.photoset.photo);
});