Using JSONP to Access 3rd Party Data

JSONP

The is a sample implementation using a modified version of Polymer JSONP web component, retriving the top 20 results on Flickr for a given tag.
As results are limited to 20 using their API, start and length perform client-side filtering, new data is fetched only when the sortColumn tag changes.

http://api.flickr.com/services/feeds/photos_public.gne?format=json&jsoncallback=_polymer_jsonp_callback_0


Basic Use

	<flickr-jsonp
		start=[int]
		length=[int]
		sortColumn=[string]
	></flickr-jsonp>
	

Demo