Socket
Socket
Sign inDemoInstall

spectragram

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    spectragram

An easy jQuery plugin for Instagram API to fetch and display user, popular or tags photo feeds inside your web application or site.


Version published
Maintainers
1
Created

Readme

Source

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)

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: '<li></li>'

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.

Keywords

FAQs

Last updated on 28 Feb 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc