Tagged Questions

Flickr is a photo/video sharing website. Photos are tagged with valuable metadata such as tags, geolocation, and Exif data.The Flickr API is how you can access that data. In fact, almost all the functionality that runs flickr.com is available through the API.

learn more… | top users | synonyms

5
votes
3answers
739 views

.ajaxStop callback function being executed multiple times

I'm using jQuery but my problem is that my page variable is being incremented several times even when I'm using "page += 1" in the .ajaxStop callback function because it's being executed more than ...
4
votes
3answers
584 views

How to get MD5 sum of a string?

In the Flickr API docs, you need to find the MD5 sum of a string to generate the [api_sig] value. How does one go about generating an MD5 sum from a string? Flickr's example: string: ...
3
votes
1answer
371 views

Using Flickr API to search photos by location or language

Some popular words, like "food," are used all over the world as loan words. I am tried to use flickr.photos.search to get photos from one specific language or region. I didn't find a setting for this ...
3
votes
1answer
328 views

flickr API calls

im interested how many api calls per second or per minute i can do with my flickr API Key? is there a limit or is it unlimited?
3
votes
3answers
244 views

How to check if a flickr url is valid

We need the user to be able to enter URLs in our media section . However since users can make mistakes in entering the URLs , we need to ensure that the URLs are valid flickr URLs . Valid URL eg : ...
2
votes
1answer
182 views

Slow INSERT into InnoDB table with random PRIMARY KEY column's value

For my website I use the PHP API for Flickr ( http://www.flickr.com/services/api/ ). This API provides several useful methods to get photos around particular GPS positions. The call to API methods ...
2
votes
0answers
178 views

Uploading to Flickr with Node.JS: Invalid auth_token

So I'm new to OAuth and Node.JS, but I have to create a Flickr bot to upload photos for a university project. From my understanding Node doesn't have native support of multipart/formdata requests so I ...
2
votes
2answers
131 views

Is JSONP supported in the new Flickr OAuth API?

I searched for the JSONP usages of Flickr's OAuth. Let me know whether it's supported.
2
votes
1answer
177 views

Modern Flickr API for Java

Is there any Java API for Flickr out there that is more modern than the existing ones? flickrj contains full set of API methods API usage tedious, no generics, type safe values, etc. no updates in ...
2
votes
1answer
171 views

How do I get phpFlickr to return the original image?

This code works perfectly: $f = new phpFlickr(FLICKR_API_KEY, FLICKR_API_SECRET); $f->setToken(FLICKR_AUTH_TOKEN); // Next line is just WordPress providing the photoset ID. $mySetID = ...
2
votes
2answers
141 views

Is there a way to get the path of a photo using the Flickr api?

When I upload a photo using the Flickr API it returns the photo id. I can then use that to find out what server the photo is on but i also need to know what farm that server is on. Is there a way to ...
2
votes
1answer
766 views

flickr gem rails 3

In your opinion, what's the best gem for the Flickr API compatible with Rails 3 ? I just need some basic functions to retrieve some photos based on web page urls for a given size. Thank you, ...
2
votes
2answers
215 views

Download from a URL with C++

I'm playing around with C++ for the first time in years. Making an app using Qt, with the Qt IDE. I want to make an app to integrate with the Flickr API. I've got to the point where i need to make ...
2
votes
1answer
225 views

Keep set feed order Flickr API

I'm currently trying setting up a little site that pulls in sets from flickr using JavaScript and JSON. It is all working fine except that the order of the photos on the site differs from that of the ...
2
votes
3answers
1k views

How to access private photos through Flickrj API

I'm making an authenticated call to access photos through Flickr API. But I am only getting my public photos but not any private photos. Given below is the code I'm using, Flickr f; RequestContext ...
2
votes
1answer
195 views

Flickr albums in django admin

I want to do the following: Having a model (p.e. a model which handles data about photographic reports) create a section which has a preview of an specific flickr album. The URL will be provided by ...
2
votes
1answer
819 views

jQuery Flickr REST API call returns nothing?

I create a Flickr account, create an app and got my API key, created a few photo sets and tested the API call using their API explorer to get the following URL to call: ...
1
vote
0answers
20 views

PHP: Download images from Flickr to local server (via CURL?)

I’ve a Wordpress site where I uses my Flickr feed to get my latest images. By using a script, I create a new post everytime I’ve a new image on Flickr but, the image thumbnail source is from Flickr ...
1
vote
1answer
92 views

Invalid Flickr API response

I've come across a very puzzling issue with the Flickr API. Basically, there's certain queries I (and some developer friends) can run which result in broken resultsets. Basically, what you request, ...
1
vote
1answer
660 views

Flickr oAuth signing requests

Flickr started to support oAuth just few weeks ago and there is no up to date documentation.. I was able to pass oAuth authentication process but I am unable to upload a photo through API. I am ...
1
vote
1answer
167 views

Flickr API error when oauth

When accepting my flickr app, I get the following error message: "Oops! Flickr doesn't recognise the permission set." It seems I am not alone with this problem, see Yang and Yun's Album's on this ...
1
vote
1answer
109 views

Flickr API .NET: Creative Commons License Search returns “All Rights Reserved” images?

I'm using the official .NET wrapper for Flickr's API. When I do a search for photos of freely usable pictures as shown in the following code snippet, I get back 3 photos whose licenses print out a ...
1
vote
1answer
82 views

AS3 - updating a flickr image upon user input

Please bare with me as I am branching out to learn some ActionScript. I am trying to integrate flickr into a weather app (yahoo weather api) that I've created and decided to start by leveraging ...
1
vote
1answer
46 views

Knowing when a photo is deleted with Flickr API

In my application, I have to run a periodical job where I need data about all the photos on my client's Flickr account. Currently, I perform several calls to flickr.photos.search to retrieve meta ...
1
vote
1answer
169 views

colorbox not displaying first caption from flickr gallery integration

I am pulling small thumbnails into my page from the flickr API, and using Colorbox to display larger thumbnails and captions from the title attribute. Using the API with C#. However, on the first ...
1
vote
0answers
173 views

Flickr get latest photos ASP using API

Hey I am currently using the following code Dim flickr As New Flickr("apikey") Dim test As New Photos test = flickr.PhotosGetRecent(5, 5) For Each [Photo] As FlickrNet.Photo In ...
1
vote
1answer
110 views

Using Flickr to Enable Images on a Site

Has anyone had success using Flickr to embed images that users can upload to my site, but that are hosted on Flickr? Is something like this possible? Thanks, Alex
1
vote
1answer
1k views

Jquery JSON Flickr API Returning Photos in a Set

I am trying to get a specified set from Flickr and then display the images in that set using the JSON and REST API. Here is the code I am using: ...
1
vote
1answer
273 views

How to automatically authenticate and query Flickr

I want to get a listing of my photos from Flickr's API but all of the APIs out there seem to have the same basic behavior: they forward you to a login prompt. My application needs to automatically ...
1
vote
1answer
315 views

Need help with Flickr/JSON/Javascript issue when displaying gallery images

Wondering if anyone can help me. I'm trying to put together a weekly photo competition page by pulling in photos from a Flickr gallery, but I can't get the images to display. It works OK for groups, ...
1
vote
2answers
360 views

Flickr API returns inconsistent number of photos when using multiple tags

I'm trying to use my Flickr account as a 'host' for an image gallery. I've tagged 251 photos with a common tag 'golftournament' and each one with the year and any players in the photo. So, for ...
1
vote
1answer
419 views

Desktop Flickrj Java Authentication Flow

I'm using the Flickrj API to log into flickr. For READ only access its fine, but I can't seem to correctly auth when i need WRITE access to add tags to photos. As i understand the basic auth flow ...
1
vote
1answer
172 views

Flickr Geo queries not returning any data

I cannot get the Flickr API to return any data for lat/lon queries. ...
1
vote
1answer
157 views

Display collections on my website using Flickr API

I have been looking for a long time where I could find a php script using phpflickr class (or not) in order to display collections (titles, images or both) on my website. I can't find any. If anyone ...
1
vote
1answer
164 views

Ruby library for Flickr API?

Is there a solid, production ready library in Ruby that interacts with the Flickr API? I found a few by googing, but their states don't impress me much. I'm looking for something along the lines of ...
1
vote
1answer
131 views

YQL and FLickr query not understood in the console

So I am trying to use YQL to access the flickr api but I have been having some issues. From reading the YQL info, it seemed like I could use any flickr query in YQL but for some reason I cannot use ...
1
vote
3answers
740 views

flickr phpflickr api

Overview I am trying to get a photo feed on to my site using Flickr's api and the phpflickr library. I can successfully get the photoset on to my site, but it shows all the photos from every ...
1
vote
1answer
127 views

Objectiveflickr set properties, more than one call

I cant to set Meta and set Location in ObjectiveFlickr if I do only one it works fine, but if I do both it only does the first one - (void)flickrAPIRequest:(OFFlickrAPIRequest *)inRequest ...
1
vote
1answer
75 views

Bug in Flickr API or is my understanding incorrect?

I'm trying to use the flickr API to get the listing of photos in a pool and so I am using the getPhotos method. I'm only passing in the single mandatory argument of the group ID (in my case ...
1
vote
1answer
356 views

How to pass authentication in Flickr without opening a browser?

I'm developing Flickr client. It's a desktop application. I need to pass authentication without opening a browser i.e. I have 2 fields for login and password and when user press "Log in" button all ...
1
vote
2answers
2k views

How to get static image url from flickr URL?

Is it possible to get static image URL from the flickr URL via an api call or some script ? For eg : Flickr URL -> http://www.flickr.com/photos/53067560@N00/2658147888/in/set-72157606175084388/ ...
0
votes
0answers
13 views

flickr .net api get frob with MVC

I'm using Asp.net MVC and trying to use the flickr api via: http://flickrnet.codeplex.com/ I've looked at the documentation and son't know how to get this to work for MVC. see snippet from docs: ...
0
votes
0answers
27 views

Flickr search application for Android

I'm working on Android application that searches images in Flickr and show the results into grid. I used the key API and I tried to retrieve the JSON object but when I run the application and after ...
0
votes
1answer
37 views

Flickr API for C# .NET always returns 100 pictures

The Flickr API for C# .NET always returns 100 pictures, no matter what page or what PerPage options I've entered. An old thread in some Yahoo group lets me think this is an error, that never got ...
0
votes
1answer
38 views

flickr.photos.search

I would like to ask for help. I got this homework to create a class in PHP with search method which returns 50 pictures from Flickr, but without use of official PHP Flickr libraries... Anyway with ...
0
votes
0answers
12 views

Share photos in Flickr when offline mode?

I have the requirement which user uploads their photos from site.When user offline,I need to share my photos in flickr based on scheduler mode. Is it possible to do offline post using flickr api ? ...
0
votes
0answers
47 views

Flickr Search and Interestingness API are returning incorrect number of results

I am calling into flickr.interestingness.getList and trying to get 100 photos per page but am noticing that the API inconsistently returns the specified number of photos I'm asking for. It occurs if I ...
0
votes
1answer
40 views

phpflickr - photos_getInfo very slow

I'm using phpflickr to retrieve images from Flickr. For some reason photosets_getPhotos doesn't contain the image descriptions and photos_getInfo has to be used instead. However, when I do it slows ...
0
votes
0answers
37 views

Signature is invalid when I call Flickr API flickr.people.getPhotos to retrieving private photos of user

I am trying to develop a android application which access private photos of user. I am able to retrieve the minitoken and using the minitoken iam getting auth_token also. After getting the auth_token, ...
0
votes
0answers
24 views

What's the Flickr format of the picture file to be uploaded?

In the API documentation, it is written that the image file has to be POST-ed. It's a Mime format with the file itself embedded in the POST. So far so good. In the example they gave, the picture ...

1 2 3