Flickr API with PHP

by Bhumi // Jul 27,2012 // 3 comments

flickr

Flickr is one of the biggest website for the photostreams and Flickr supports API which is a very easiest way to display photos on your website without having to worry about server bandwidth and performance.

Well,Today I am going to explain how you get photosets from the Flickr with the use of Flickr API.

First of all,Lets get the Flickr API.To get the Flickr API, you need to sign into Flickr and request for an API key. Now you have your own Flickr API

Next is how we get Flickr photosets with using Flickr API.Here, I am going to use cURL to get the data from Flickr. If you don’t want to go with cURL, you can use file_get_contents function.

Let’s have a look into the below code:

In above code, I have defined api_key, you need to replace your Flickr API key with which to sign your requests.Next, method, I used here is flickr.photosets.getList which is one method of Flickr to get a list of a Flickr’s photosets. Third parameter is the user_id of flickr account.Fourth parameter is the format and php_serial format which will return serialized PHP string with the data

Here,To get the data,I have used PHP cURL functions.cURL is a library of allows us to communicate with other servers.curl_init is initialize the cURL handle.In CURLOPT_URL in curl_setopt,to put the url to fetch data by curl library.curl_exec is execute the curl and curl_close is to close the curl. With CURLOPT_RETURNTRANSFER as true means to return the contents in a variable instead of echoing them to the browser.

Here, I have unserialize the contents fetched via API.That’s it. Now you can use fetched details of flickr photos to direcly display on site,even you can create slideshow,gallery etc.

Lets check out the output returned by above code

That’s it.I hope this post will helpful.I hope this post will help you. Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.

RELATED POST

To grab content from nested tags in PHP

Recently I am working with scraping of data from external url and for scraping we always need to use preg_match function to get matched data. READ MORE

Check Email address using Network Functions

Today we are going back to basics of PHP with a quick tutorial on how to check email address using network functions of PHP.Network functions READ MORE

WordPress site into maintenance mode Without Plugin

With explained hook function over here,you can make WordPress site in “maintenance mode” easily.This is useful if you want to test a design change or READ MORE

Get English Ordinal Number Suffix in PHP

A post after very long time. Actually busy with work,here i am going to share one quick post about how to get English Ordinal Number READ MORE

To Display XML content using PHP Header

Nowadays web services are become more and more popular and Most commonly used format for exchanging information in web services are XML because XML is READ MORE

Feedback 3

  1. Pingback: Wordpress Plugin: Cool Flickr Slideshow | Creative Dev

  2. Pingback: Wordpress Plugin: Cool Flickr Slideshow | Creative Dev

  3. Pingback: Wordpress Plugin: Cool Flickr Slideshow | CreativeDev

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">