Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created April 4, 2018 08:12
Show Gist options
  • Save haingdc/a804734ef83e8285db49f1bd499a2101 to your computer and use it in GitHub Desktop.
Save haingdc/a804734ef83e8285db49f1bd499a2101 to your computer and use it in GitHub Desktop.
Gửi các request tới server thông qua TDD
// flickr-fetcher.js
fetchFlickrData: function(apiKey, fetch) {
var url = 'https://api.flickr.com/services/rest/?method=flickr.photos.search&api_key='
+ apiKey + '&text=pugs&format=json&nojsoncallback=1'
return fetch(url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment