flickr

Serialized PHP array in Flickr

I have this serialized array but I have no idea how to get the id: 7796249@N02 a:2:{s:4:"user";a:3:{s:2:"id";s:11:"7796249@N02";s:4:"nsid";s:11:"7796249@N02";s:8:"username";a:1:{s:8:"_content";s:9:"ilhan.z.y";}}s:4:"stat";s:2:"ok";} $array = unserialize('a:2:{s:4:"user";a:3:{s:2:"id";s:11:"7796249@N02";s:4:"nsid";s:11:"7796249@N02";s:...

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 example, three random photos may have the following tags: golftournament dan steve 2005 (dan and steve in this photo from 2006) golftournament ...

How to get userId using flickrapi-1.2 jar

I am trying to get userid from flickrapi-1.2 jar but its not working for me,i had updated the jar from 1.1 to 1.2 and the getProfile method is failing if i pass "" blank string to get user profile on the other hand it works fine with 1.1 Thanks in Advance --AJ ...

Flickr API - Latest Photos from a Set?

I'm currently using this JSON to get the latest flickr photos of an ID: http://api.flickr.com/services/feeds/photos_public.gne?id=49107890@N06&tagmode=any&format=json&jsoncallback=? Now I need to change my code to display a set instead of an ID. I can get some JSON return with this: http://api.flickr.com/services/rest/?met...

Flickr Gallery API wrapper for Python?

Is there currently a Flickr API wrapper for Python which includes working with galleries? I'm aware of these two wrappers, but neither of them seems to support galleries: http://stuvel.eu/projects/flickrapi http://code.google.com/p/flickrpy/ Is there some wrapper hidden away in the dark corners of the internet or would I have to wri...

PHP div for every 12 images

Hi again guys, i have this piece of code: <? include( "http://api.flickr.com/services/feeds/photos_public.gne?id=22352410@N07&amp;lang=en-us&amp;format=php" ); $i = 0; foreach($feed['items'] as $item) { preg_match("/<img src=\"([^\"]+)\" .*? \/>/", $item['description'], $matches); $img_html = $matches[0]; $img_src = $mat...

Flickr Web application URL scheme problem

Hi, I am developing an iPad application that used Flickr API services (Objective Flickr). As mentioned in the document: 1. Obtained the Consumer Key and Secret for my app. 2. Modified the App type as web application 3. Updated Callback URL as neo://auth 4. In info.plist of my app, added new entry for URL types: URL identifier : same as...

Question about sending a request to another site that has a callback that targets my original page

Hi, In my test.php file, I sent a request to a Flickr app I have using header("Location: " . $request); where $request is the URL that I am trying to reach on Flickr. For my Flickr app, I have to set a callback URL. When Flickr is done with processing my request, it will call the callback URL. I would like the callback URL to be my...

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

Hi all, 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, but having some problems with the gallery code. Getting the correct JSON response, but can't get the results to display on the page...

unable to get auth token in flickr

Hi, I am trying to access flickr services from android , to get the full permissions , first of all i fetched forbs using flickr.auth.getFrob method by integrating & converting in MD5 secret + 'api_key' + [api_key] + 'method' + 'flickr.auth.getFrob' i successfully got the frob , but the problem came when i request a authoriz...

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 authenticate using Flickr OAuth so that the user doesn't have to know the login credentials. ...

How do I change the amount of items retrieved from a flickr feed?

Does anyone know the parameter to change (decrease) the amount of items retrieved in the flickr feed? It always returns 20 items by default. Example: http://api.flickr.com/services/feeds/photos_public.gne?format=json The documentation is rather scarce: http://www.flickr.com/services/feeds/ ...

flickr plugin for CKEditor / CKFinder

I've done a google search and can't seem to find one anyone know if one exists or not ? Hopefully it would allow the user to select a photo from flicker to put into the ckeditor area with the correct url .. and for bonus it would be cool if they could browse for an image that would get posted to flicker and be put in editor with the cor...

Social networking in Smart phone

Hello, I have to implement social networking sites in my iphone, blackberry and android applications. I have implemented one radio application in which I have to post status on the regular bases. So, I want to ask that is there anyone who have implemented the facebook,twitter, myspace, linkedin, orkut and flicker in the iphone, blackber...

Download from a URL with C++

Hi, 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 a call to a URL. http://flickr.com/services/rest/?method=flickr.people.getInfo&amp;api_key=987654321&amp;auth_token=9765984&amp;api_s...

Using Python to read images from a www.flickr.com account

Ok, so I need to build this application where I'll read images from a www.flickr.com account and use the images in my Python app. How will I do that? Any ideas? Thanks. ...