All Projects → stevenschobert → Instafeed.js

stevenschobert / Instafeed.js

Licence: mit
A simple Instagram JavaScript plugin for your website

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Instafeed.js

instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (-98.34%)
Mutual labels:  instagram, instagram-api
go-instagram
Instagram private API in Go
Stars: ✭ 71 (-97.9%)
Mutual labels:  instagram, instagram-api
Flutter-Photoarc-app
(Full-stack) Fully functional social media app (Instagram clone) written in flutter and dart with backend node.js and Postgres SQL.
Stars: ✭ 38 (-98.87%)
Mutual labels:  instagram, instagram-api
instragram-follow
Automatically follow Instagram accounts
Stars: ✭ 23 (-99.32%)
Mutual labels:  instagram, instagram-api
instagram private api
An Instagram-Client written in Dart
Stars: ✭ 39 (-98.84%)
Mutual labels:  instagram, instagram-api
InstaLV
Live stream from desktop to Instagram
Stars: ✭ 27 (-99.2%)
Mutual labels:  instagram, instagram-api
FCommunity
multi Checkers (Hma/Hulu/Spotify/Call of duty/Instagram/smtp2go/VyprVpn) in One Tool Named FCommunity
Stars: ✭ 26 (-99.23%)
Mutual labels:  instagram, instagram-api
instagram-oauth-nodejs-server
Node.js server for Intagram-API OAuth purpose.
Stars: ✭ 12 (-99.64%)
Mutual labels:  instagram, instagram-api
Instagram-Scraper-2021
Scrape Instagram content and stories anonymously, using a new technique based on the har file (No Token + No public API).
Stars: ✭ 57 (-98.31%)
Mutual labels:  instagram, instagram-api
InstagramCpp
Instagram REST API client wirtten in C++
Stars: ✭ 24 (-99.29%)
Mutual labels:  instagram, instagram-api
nanogram.js
📷 An easy-to-use and simple Instagram package that allows you to fetch media content without API and access token.
Stars: ✭ 62 (-98.16%)
Mutual labels:  instagram, instagram-api
Osintgram
Osintgram is a OSINT tool on Instagram. It offers an interactive shell to perform analysis on Instagram account of any users by its nickname
Stars: ✭ 312 (-90.76%)
Mutual labels:  instagram-api, instagram
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-99.38%)
Mutual labels:  instagram, instagram-api
igFame
📷 igFame - Tool for automated Instagram interactions [PHP]
Stars: ✭ 16 (-99.53%)
Mutual labels:  instagram, instagram-api
InstaLite
Instagram api not official easy-to-use class, minimal number of features
Stars: ✭ 72 (-97.87%)
Mutual labels:  instagram, instagram-api
kirby3-instagram
Kirby 3 Plugin to call Instagram (or any other) API Endpoints
Stars: ✭ 20 (-99.41%)
Mutual labels:  instagram, instagram-api
instagram-token-agent
A service to keep your Instagram Basic Display API token fresh.
Stars: ✭ 118 (-96.5%)
Mutual labels:  instagram, instagram-api
MyIGBot
MyIGBot is a Private API for Instagram to like, follow, comment, view & intaract with stories, upload post & stories, get all information about a user/posts and get posts based on locations/hashtags. It also supports proxy.
Stars: ✭ 137 (-95.94%)
Mutual labels:  instagram, instagram-api
isave-app
Instagram tool to download image, video and reels - App
Stars: ✭ 17 (-99.5%)
Mutual labels:  instagram, instagram-api
Ig Monitoring
🚨 DISCONTINUED🚨 IGMonitoring - Free, self hosted Instagram Analytics and Stats
Stars: ✭ 283 (-91.62%)
Mutual labels:  instagram-api, instagram

Instafeed.js

Build Status npm version

Instafeed.js is a simple way to display your Instagram photos on your website.

Version 2 of Instafeed.js is now available, powered by the new Instagram Basic Display API.

For help upgrading from v1, see the v2 migration guide.

Installation

Setting up Instafeed is pretty straight-forward - there are 3 main steps.

  1. Create a Facebook app linked to Instagram, and add yourself as a test user. See Managing User Tokens.
  2. Create an access token and provide it to an Instagram Token service
  3. Add the instafeed.js script to your web page and provide some simple options. See Basic Usage
<script type="text/javascript" src="path/to/instafeed.min.js"></script>

Note: Instafeed.js is also compatible with require.js and commonJS exports

Basic Usage

<div id="instafeed"></div>

<script type="text/javascript">
    var feed = new Instafeed({
      accessToken: 'your-token'
    });
    feed.run();
</script>

Instafeed will automatically look for a <div id="instafeed"></div> and fill it with linked thumbnails. Of course, you can easily change this behavior using standard options. Also check out the advanced options for some advanced ways of customizing Instafeed.js.

Requirements

  • A Facebook developer account, and an Instagram account with some media posted to it.
  • A Facebook app linked to your Instagram account, and a token generated through that app.
  • A service to keep your access token fresh

Options

Here are some of the most commonly used options:

Key Default Value Valid types Description
accessToken null String, Function Required. The Instagram access token, either as a string, or a function which returns a string
debug false Boolean Set to true to display debugging information
filter null Function A function used to exclude images from your results. The function will be given the image data as an argument, and expects the function to return a boolean.
limit null Number Display a maximum of this many posts
sort null Function A custom function to sort the media, rather than the default 'most recent' sorting
target 'instafeed' String, DOM Element Either the ID or the DOM element itself where you want to add the images.
template '<a href="{{link}}"><img title="{{caption}}" src="{{image}}" /></a>' String A mustache template used to produce HTML for the document.
transform null Function A function used to transform the image data before it is rendered.

See Options in the wiki for the complete reference.

Templating

The easiest way to control the way Instafeed.js looks on your website is to use the template option. You can write your own HTML markup and it will be used for every image that Instafeed.js fetches. See Templating.

Changelog

See CHANGELOG.md.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].