Flickr API: Tap Into Billions of Photos for Windows Phone 7
- Date: April 12, 2011 from 11:30AM to 12:30PM
- Day 1
- EXT01
- Speakers: Markus Spiering
- 19,049 Views
- 3 Comments
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Right click “Save as…”
Slides (view online)Do you want your app to integrate with one of the world’s leading photosharing site? The Flickr for Windows Phone 7 app is a full featured mobile application that is pushing the boundaries of UX design and is 100% built on Flickr's API methods that are available for developers. This talk will introduce the mobile app, highlight some of the complex design decisions, and provide insights into the Flickr API methods. Attendees will learn how to enrich their applications using Flickr's rich content via the Flickr APIs.
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
I'm learning
Very interesting!
Oh, thank you so much Channel9 !!!!! I'm trying to create a windows phone 7 application using flickr and this video is a wonderful introduction.
Althought, I have some difficulty when searching in flicker with specific tags. First of all I include a reference to the flickr API and then I'm trying the following code:
Flickr flickr = new Flickr(API_KEY); //where API_KEY is my Flickr Key
PhotoSearchOptions searchOptions = new PhotoSearchOptions();
searchOptions.Tags = "sun";
searchOptions.PerPage = 5;
searchOptions.Page = 1;
PhotoCollection sunPhotos = flickr.Photos.search(searchOptions);
But I have this error report:
>>Error 1 'FlickrNet.Flickr' does not contain a definition for 'Photos' and no extension method 'Photos' accepting a first argument of type 'FlickrNet.Flickr' could be found (are you missing a using directive or an assembly reference?) C:\Users\Ignis\Documents\Visual Studio 2010\Projects\flickrPhotos\flickrPhotos\MainPage.xaml.cs 58 54 flickrPhotos
In a WPF application I have used flickr.PhotosSearch and works fine.
Could anyone tell me what should I do different for the windows phone 7 application?
Thank you in advance!
Remove this comment
Remove this thread
close