Skip to content

Instantly share code, notes, and snippets.

@caitlinhall
Created July 17, 2015 21:24
Show Gist options
  • Save caitlinhall/58733234a82d8f36e710 to your computer and use it in GitHub Desktop.
Save caitlinhall/58733234a82d8f36e710 to your computer and use it in GitHub Desktop.
// This Ajax call gets your most recent pictures.
$.ajax({
type: 'GET',
url: "https://api.instagram.com/v1/users/" + userid + "/media/recent/?access_token=" + myToken,
dataType: 'jsonp',
success: function(json) {
createPhotoGrid(json);
},
error: function(error) {
console.log(error);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment