Skip to content

Instantly share code, notes, and snippets.

@magyarn
Created April 4, 2019 13:00
Show Gist options
  • Save magyarn/c7e74dacd4ed84317b85b36281e28cc0 to your computer and use it in GitHub Desktop.
Save magyarn/c7e74dacd4ed84317b85b36281e28cc0 to your computer and use it in GitHub Desktop.
import axios from 'axios'
import config from '../config'
export default function flickr(method, params) {
return axios({
method: 'get',
url: 'https://api.flickr.com/services/rest',
params: {
api_key: config.api_key,
format: 'json',
nojsoncallback: 1,
...params,
method: `flickr.${method}`,
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment