Share your Instagram Feed with Instafeed
Instafeed is a CoffeeScript library aimed at making Instagram feeds easy to share on your website. It was developed by Steven Schobert with simplicity in mind:
<script type="text/javascript">
var feed = new Instafeed({
get: 'tagged',
tagName: 'awesome',
clientId: 'YOUR_CLIENT_ID',
template: '<a href="{{link}}"><img src="{{image}}" /></a>'
});
feed.run();
</script>
Instafeed supports many features: templating, sorting, tags and locations (among others). You can view a list of the standard options on their website. You can also view the source on GitHub.
Discussion
Sign in or Join to comment or subscribe