We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The only options for flickr image sizes are t,s,m,z,b.
Is there support for 'k' large, or 'o' original size?
The text was updated successfully, but these errors were encountered:
I did this by adding the extra querystring parameters to the Flickr API call. Example
var flickrURL = 'https://api.flickr.com/services/rest/?&method=flickr.photosets.getPhotos&extras=url_k,url_q&api_key=' + ...
I added the extras=url_k,url_q to all four URLs.
extras=url_k,url_q
Then below in the loop,
$.each(flickrResults, function(i,item){ //create image urls var photoURL = item.url_k; var thumbURL = item.url_q; ....
Sorry, something went wrong.
No branches or pull requests
The only options for flickr image sizes are t,s,m,z,b.
Is there support for 'k' large, or 'o' original size?
The text was updated successfully, but these errors were encountered: