There is an error code missing from the documentation, Code 8 means "Content not allowed" My app hit this when someone tried to add a photo flagged as moderate...
6885
jennifer_dodd
Apr 18, 2011 1:10 pm
Flickr's oEmbed API for non-vanity URL slideshows seems to be having issues. For URL http://www.flickr.com/photos/23956496@N06/show it returns...
6886
Jamal Fanaian
jamalfanaian
Apr 18, 2011 6:05 pm
It looks like there was a bug with Flickr's oEmbed when calling it with a URL containing an NSID. The issue has been resolved and will be deployed to...
6887
Jamal
jamalfanaian
Apr 18, 2011 6:23 pm
It looks like there was a bug with Flickr's oEmbed when calling it with a URL containing a NSID. The issue has been resolved and will be deployed to production...
6888
dddarrenuk@...
dddarrenuk...
Apr 19, 2011 9:44 pm
I'm having issues with flickr.people.findbyusername. I'm returned an exception. I can call flickr.people.getInfo using the user id but even the following fails...
6889
Chris Blackwell
d1rtym0nk3y
Apr 20, 2011 7:39 am
If the user has chosen to hide themselves from api searches i believe you will get a user not found result when searching by username. Chris...
6890
Sam Judson
wackylabs
Apr 20, 2011 7:41 am
The user can hide themselves from site wide and API searches - see this page for the settings: http://www.flickr.com/account/prefs/optout/ ...
6891
ericipty
Apr 20, 2011 7:43 am
I'm building an iPhone app where I want users to upload photos to a fixed flickr account. Is it the only way to ask users to authenticate the app using their...
6892
Sam Judson
wackylabs
Apr 20, 2011 8:01 am
Firstly, it is technically possible, but you have to authenticate the app as the account, and then store that authentication token in the app. You can't just...
6893
alex dantart
koreynaiad
Apr 20, 2011 12:56 pm
Hi: Is it normal that API method galleries.getList returns me results if the user is pro ? I'm using that command with a non-pro user, and it returns me: Array...
6894
Paul Mison
pcmison
Apr 20, 2011 4:35 pm
... [empty array response snipped] ... That user has no galleries - http://www.flickr.com/photos/45822664@N06/galleries/ - so the API is returning the correct...
6895
alex dantart
koreynaiad
Apr 20, 2011 4:43 pm
Hi: Thank you ... but, then how do you take the albums ? 2011/4/20 Paul Mison <misonp@...>...
6896
alex dantart
koreynaiad
Apr 20, 2011 4:45 pm
Sorry ! language misunderstandings ... I was looking for photosets.getList thank you !! 2011/4/20 alex dantart <dantart@...>...
6897
prakaz_b
Apr 25, 2011 8:28 am
Hi, I'm using flickr.photos.search to get restricted photos from Flickr. The call is signed and the safe_search param is set to 3(restricted). However, this...
6898
Tristan Savatier
immediate_bo...
Apr 25, 2011 5:51 pm
no, flickr does not use oAuth, but it uses a very similar authentication method. i think that i the time flickr authentication was designed, oAuth was not ...
6899
kitby
brian.aydemir
Apr 26, 2011 3:30 pm
Hi everyone, URLs for collections appear to take the form http://www.flickr.com/photos/{user}/collections/{id-like-thing}/ , and similarly for galleries. Now,...
6900
Brian Aydemir
brian.aydemir
Apr 26, 2011 3:33 pm
Oops, I hit "send" a bit too quickly: At least for galleries, there's the flickr.urls.lookupGallery method. I'm not seeing anything for collections, though. ...
6901
genadinik@...
genadinik
Apr 26, 2011 3:39 pm
Hey guys is there a way to be easily taken off this list? It was helpful, but I have moved on from Flickr development. Sent from my Verizon Wireless 4GLTE...
6902
Sam Judson
wackylabs
Apr 26, 2011 3:55 pm
Collections form a tree, as a collection can be a collection of collections... http://www.flickr.com/services/api/flickr.collections.getTree.html ...
6903
Sam Judson
wackylabs
Apr 26, 2011 3:56 pm
Yes, read the emails you get sent and click the link at the bottom to unsubscribe. Sam...
6904
Brian Aydemir
brian.aydemir
Apr 26, 2011 4:31 pm
I'm aware of that method. I was specifically wondering how to go from URL to collection ID *without* crawling the entire tree (cf. my original message). For...
6905
Sam Judson
wackylabs
Apr 26, 2011 5:01 pm
Ah yes, apologies. No, there is no method like that that I am aware of. Sam...
6906
Winsou Daniel
winsou_daniel
Apr 28, 2011 12:49 pm
I'm new to flickr and i try to test AuthExample.java in the example folder. I got my API Key and shared secret. But i got this error : ...
6907
dim3nsionx1
Apr 29, 2011 6:40 pm
Hi Guys, i have code that lists images based on a photoset ID. i was just wondering how i would alter it so that it would showcase pictures based on a search...
6908
Sam Judson
wackylabs
Apr 29, 2011 9:11 pm
Simple, change flickr.photosets.getPhotos to flickr.photos.search, 'photoset_id' => '72157622566216264' to 'text' => 'search terms' and $photos =...
6909
desk_photo001
Apr 30, 2011 1:59 am
I'm trying to develop smartphone client with flickr open api. Anonymous smartphone users need to upload their photos into flickr without registering an flickr...
6910
Sam Judson
wackylabs
Apr 30, 2011 8:16 am
As we have said multiple times you are not allowed to upload images into your Flickr account unless you own the copyright for them. If you are just using...
6911
ericipty
Apr 30, 2011 9:32 am
Dear all, I'm struggling with this error all day long, this is the code: NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; ...
6912
Tristan Savatier
immediate_bo...
Apr 30, 2011 9:40 am
what language / package are you using? i've been uploading photos using the Flickr API from a perl script, and it worked just fine, so the Flickr API works for...
6913
ericipty
Apr 30, 2011 9:46 am
The code is in Objective-C for iOS app. I was able to call other methods that requires auth. Maybe there is something wrong with the code below. Thanks, Eric...