Hi Sam. I thought so, but thank you very much for the reply. I guess that is information that is pretty much unattainable for now. Any plans for that in the...
... Yes, we occasionally have to disable API keys for making too many requests. The precise limits depend on the methods you call (some are more expensive to...
For the last several weeks I've noticed that, when the call is authed, flickr.photos.search will return flagged photos, completely ignoring the value (or...
... http://api.flickr.com/services/feeds/photos_public.gne?id=49045532%40N00&format=rss_200 You are confusing usernames with URLs. The user who has the...
dope! That was it. thanks! ... http://api.flickr.com/services/feeds/photos_public.gne?id=49045532%40N00&format=rss_200 ... LFE is ... user ... "Allen...
Hi All, I was just about to write a group pruning app that would display a list of the groups a user is a member of along with a selection of recent photos in...
... Hello Tim, It's not documented, but it appears that a URL of the form * *http://www.flickr.com/groups_leave.gne?id=/group_id/* should do the trick. As an...
... Are you managing cookies? What I would expect would work is to approach both the log-in and the reverse-contacts request as standard page requests, /i.e./...
Thanks for the reply. See, my problem is a little bit more complex. I am doing a survey for Flickr users for a university research project. When people finish...
... Interesting project. I regret that this is all beyond my limited Flickr knowledge and experience. I would be rather surprised if an authentication token...
... Yeah, makes sense, although I was hoping it would somehow be possible. ... Well, I had already asked about an API method on this list and got the answer...
Hi i wanted to do some analysis of getagged images in flickr. There is no way to get only images with georeferences (or is there a good way?) i tried to search...
It's well-known behaviour. The official word on this that I remember seeing is here: http://tech.groups.yahoo.com/group/yws-flickr/message/1866 Dave W....
... I think if you pass a bbox parameter to search you get back only geotagged images. Try "-180, -90, 180, 90" if you want images from anywhere in the...
Someone else asked pretty much the same thing on the Flickr forums a while ago, and I haven't found an answer. This is my first attempt at doing anything with...
Below is my code that will generate images/photos 4 by 3 and it works fine. In my photoset in the Flickr.com I have 22 images. I want it to display randomly,...
This has nothing to do with Flickr - simply search good for "automatically refresh web page" and I'm sure you will find hundreds of comments much like Daniels....
Even if I javascript code that will refresh the page, it will not work since the PHP script below does not have a code to random the images. Hope you can help...
The Flickr API doesn't have any sort of randomizing function. Since you're dealing with a potential set of fewer than 500 images probably the best thing to do...
I added this code but there is no effect, why? $recent = $photos['photo']; srand((float)microtime() * 1000000); shuffle($recent); Hope somebody can assist me....
Are you still returning only 12 photos from Flickr? You need to return something like 100, or 200, and then use shuffle. After you've done the shuffle you...