Last updated 5 years ago
Was this helpful?
Write a basic API fetch to render Flicker images based on some Tag
axios({ method: 'get', url: 'https://api.flickr.com/services/rest', params: { method: 'flickr.photos.search', api_key: config.api_key, tags: tag, extras: 'url_n, owner_name, date_taken, views', page: 1, format: 'json', nojsoncallback: 1, per_page: 30, } })