GeekArticles
Database
SQL Server
Database
SQL ServerAccessing Images On Flickr From An ASP.NET Website Using The Flickr.Net Library
<p><a is a popular photo-sharing website. Like many and websites, Flickr includes a programmatic interface through
which other programs and websites can view and manage photos, comments, groups, tags, and other Flickr assets. I recently started work on a website that offers its users
a customized homepage where they can upload pictures, enter biographical and contact information, and integrate with other social websites, such as Flickr. Specifically, a
user can supply their Flickr screen name and have a random collection of their public photos in Flickr appear on their customized API includes a number of methods, such as <code>flickr.people.findByUsername</code> and
<code>flickr.photos.getInfo</code>, which return information about a particular Flickr user and a particular photo, respectively. To call one of these methods you need
to send a properly formatted message to the Flickr API URL, which returns the results in a specified format. <a API
documentation</a> provides all of the gory details.
</p><p>
If more interested in interacting with Flickr from an ASP.NET website and are less interested in the low-level details, be delighted to know that there are
mature, open source .NET libraries for accessing the Flickr API. With these libraries you need to know the ins and outs of the Flickr API; instead, you just work with
the .NET library from your ASP.NET application and let it handle all the low-level formatting and message transport details.
</p><p>
This article explores the open source Flickr API library called <a which was created by
<a Judson</a> and was used in my aforementioned project. Specifically, look at how to create an ASP.NET website
that displays a smattering of randomly selected pictures from a particular Flickr user, along with how to show a specific comments (if any exist). And the complete
code in both Visual Basic and C# is available for download at the end of this article. Read on to learn more!
<br /><a More ></a></p>
Sponsored Links
Read Next: Article :: IP Routing Use Cases
Related Topics
Subscribe via RSS
SQL Server
- Naming Database Objects: Part II
- Trace Messages Part V: Trace Cleanup
- Naming Database Objects: Part I
- Multiple-Child Aggregation
- Creating SQL Tables for an Integrating Application Using Dexterity
- SQL Server 2005 Beta 2 Transact-SQL Enhancements
- .NET Rocks! - Brian Larson on SQL Server Reporting Services
- Computing the Trimmed Mean in SQL
- SQL Server 2000 Gains on Oracle
- Separator First Formatting (SFF)
