A repository of over 1000 quality jQuery plugins

jQuery jQuery Spectragram

jQuery Spectragram is a jQuery List plugin.

Created by Adrianengine

A jQuery plugin using the Instagram API to fetch and display user, popular or tags photo feeds inside a list or any container you define.

Not what you're looking for? Click here to view more List jQuery plugins

Spectragram

spectragram.js is a jQuery plugin using the Instagram API to fetch and display user, popular or tags photo feeds inside a list or any container you define.

Visit Project Page

Download spectragram.js (minified 3kb)


On June 1, Instagram, which is owned by Facebook, will stop allowing many third parties to access the images in its feeds.

This means you will no longer be able to fetch photos form other users with spectragram after May 31.

How to get Instagram API access token and fix your broken feed


Features

  • Get the most recent media published by a user, the most popular media at the moment, or recently tagged media from Instagram API
  • Display the results on list items or any other HTML tag you define
  • Define the size of the pictures (small, medium, big)
  • Use your own Instagram application ClientID and AccessToken
  • More features coming soon!

How to use

In order to use the plugin you need to register an application at Instagram Developers, get a client_id and recieve an access_token.

Simple usage

  1. Be sure to have jQuery script included and then include the spectragram.js script right before the </body> tag.
 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
 <script type="text/javascript" src="js/spectragram.js"></script>
  1. Set your Instagram accessToken, clientID and the query:
jQuery.fn.spectragram.accessData = {
    accessToken: 'your-instagram-access-token',
    clientID: 'your-instagram-application-clientID'
};
  1. Call spectagram function on the container element and pass it your query:
$('ul').spectragram('getRecentTagged',{
    query: 'converse'
});

This example will show 10 or less results for photos tagged "converse" in a list, "medium" sized.

Configuration

.spectragram( Method, [Options] )

Method: getUserFeed, getPopular or getRecentTagged functions

Options: An array to configure the properties of spectragram

Methods

getUserFeed

Get the most recent media published by a user.

$('ul').spectragram('getUserFeed',{
    query: 'adrianengine'
});

getPopular

Get a list of what media is most popular at the moment.

$('ul').spectragram('getPopular');

getRecentTagged

Get a list of recently tagged media.

$('ul').spectragram('getRecentTagged',{
    query: 'converse'
});

Options

accessToken (required)

Type: String

This is your Instagram Application AccessToken. Default: Null

clientID (required)

Type: String

This is your Instagram Application Client ID. Default: Null

query (required)

Type: String

The string to search. Default: 'coffee'

max

Type: Number

The maximum number of results to show. Default: 10

size

Type: String

The size of the photos. 'small', 'medium' or 'big'. Default: 'medium'

wrapEachWith

Type: String

The HTML tag to wrap every result. Default: '\

  • \
  • '

    complete

    Type: Function

    A callback function to execute after the display of the photos. Default: 'null'

    Example

    jQuery.fn.spectragram.accessData = {
        accessToken: 'your-instagram-access-token',
        clientID: 'your-instagram-application-clientID'
    };
    
    $('div').spectragram({
        query: 'converse',
        max: 14,
        size: 'big',
        wrapEachWith: '<p></p>',
        complete: alert('Done!');
    });

    License

    Licensed under the MIT license. You are free to use this plugin in commercial projects as long as the copyright header is left intact.

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Further notes

    Developed by Adrian Quevedo in Bogotá - Colombia.

    This code is provided with no warranty. While I strive to maintain backwards compatibility, the code is still under active development. As this is the case, some revisions may break compatibility with earlier versions of the library. Please keep this in mind when using the plugin.

    This plugin uses the Instagram(tm) API and is not endorsed or certified by Instagram or Instagram, inc. All Instagram(tm) trademarks displayed on this plugin are property of Instagram, Inc.



    You might also like these other List jQuery Plugins

    • jquery-tips-everyone-s...

      A collection of tips to help up your jQuery game

    • jQuery Grid by Gijgo.com

      jQuery Grid by Gijgo.com is a plug-in for the jQuery Javascript library. It is a very fast and extandable tool, […]

    • JQuery Tagit

      The Jquery Tagit Plugin transforms an html unordered list into a unique tagging plugin.