Skip to content

Instantly share code, notes, and snippets.

@shaekuronen
Created February 16, 2014 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaekuronen/9038894 to your computer and use it in GitHub Desktop.
Save shaekuronen/9038894 to your computer and use it in GitHub Desktop.
Unauthenticated query to the Instagram API. Returned JSON is dynamically added to the page.
<ul id="instagram-container"></ul>
(function ($) {
var get_json_callback,
instagram_json,
url;
url = 'https://api.instagram.com/v1/tags/staffordshire/media/recent?client_id=218a8f30a6924492b7ffdbbcb08f72c5&callback=?';
// callback to execute when json request completes
get_json_callback = function (returned_json) {
var count = returned_json.data.length,
instagram_slideshow_items = '';
$.each(returned_json.data, function (key, current_item) {
// build the html for instagram item
var instagram_item = '<li>';
instagram_item += '<a target="_blank" href="' + current_item.link + '">';
instagram_item += '<img src="' + current_item.images.low_resolution.url + '" width="150" heigh="150">';
instagram_item += '</a>';
instagram_item += '</li>';
// end build the html for instagram item
// add item to instagram slideshow fragment
instagram_slideshow_items += instagram_item;
// if this is the last item -- basically a callback
if (key === (count - 1)) {
// add instagram items to page
$('#instagram-container').append(instagram_slideshow_items);
}
});
};
// callback to execute when json request completes
// query instagram api and get json
instagram_json = $.getJSON(url, get_json_callback);
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment