Import Flickr Photos to Website

Hello,

Does anyone have experience with importing images from a Flickr account, to a website photo gallery?

Thanks :stare:

Using the Flickr API? PHP? This could be accomplished pretty easily with static absolute image embedding:

<img src="http://farm4.static.flickr.com/2342343/2_23423ader.jpg" />

You probably mean embedding from the rss feed from the website, as this is dynamic and makes a lot more sense. Here is an example that pulls the first 20 fotos from a strangers flickr account and writes them to your page. To obtain this url, click the rss icon at the bottom of the page so that you get to view your rss feed, change the end of the url from rss_200 to json, copy and paste the link into the js include file:


<script type="text/javascript">
function jsonFlickrFeed(o)
{
	var i = 0;
	while(o.items*)
	{
    	document.write('<img src="' + o.items*.media.m + '" alt="' + o.items*.title +'">');
   		i++;
	}
}
</script>
<script src="http://api.flickr.com/services/feeds/photos_public.gne?id=28203925@N08&lang=en-us&format=json" type="text/javascript"></script>