All Projects β†’ MantasMikal β†’ Gatsby Source Instagram All

MantasMikal / Gatsby Source Instagram All

Licence: mit
βš›οΈπŸ“Έ Gatsby source plugin for fetching all your instagram posts

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gatsby Source Instagram All

Jinstagram
A Java library for the Instagram API.
Stars: ✭ 382 (+809.52%)
Mutual labels:  instagram-api, instagram
Instapy Cli
✨ Python library and CLI to upload photo and video on Instagram. W/o a phone!
Stars: ✭ 498 (+1085.71%)
Mutual labels:  instagram-api, instagram
Instasharper
Private Instagram API
Stars: ✭ 426 (+914.29%)
Mutual labels:  instagram-api, instagram
Instafeed.js
A simple Instagram JavaScript plugin for your website
Stars: ✭ 3,376 (+7938.1%)
Mutual labels:  instagram-api, instagram
Socialmanagertools Igbot
πŸ€– πŸ“· Instagram Bot made with love and nodejs
Stars: ✭ 699 (+1564.29%)
Mutual labels:  instagram-api, instagram
Instagram Java Scraper
Instagram Java Scraper. Get account information, photos, videos and comments.
Stars: ✭ 335 (+697.62%)
Mutual labels:  instagram-api, instagram
Instagramapisharp
A complete Private Instagram API for .NET (C#, VB.NET).
Stars: ✭ 486 (+1057.14%)
Mutual labels:  instagram-api, instagram
instagram private api
An Instagram-Client written in Dart
Stars: ✭ 39 (-7.14%)
Mutual labels:  instagram, instagram-api
Instagram4j
πŸ“· Instagram private API in Java
Stars: ✭ 629 (+1397.62%)
Mutual labels:  instagram-api, instagram
Swiftinstagram
Instagram API client written in Swift
Stars: ✭ 570 (+1257.14%)
Mutual labels:  instagram-api, instagram
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 (+642.86%)
Mutual labels:  instagram-api, instagram
Kafka Connect Elasticsearch Source
Kafka Connect Elasticsearch Source
Stars: ✭ 22 (-47.62%)
Mutual labels:  source, plugin
Ig Monitoring
🚨 DISCONTINUED🚨 IGMonitoring - Free, self hosted Instagram Analytics and Stats
Stars: ✭ 283 (+573.81%)
Mutual labels:  instagram-api, instagram
Instagramlive Php
A PHP script that allows for you to go live on Instagram with any streaming program that supports RTMP!
Stars: ✭ 362 (+761.9%)
Mutual labels:  instagram-api, instagram
Instamancer
Scrape Instagram's API with Puppeteer
Stars: ✭ 273 (+550%)
Mutual labels:  instagram-api, instagram
Instagram User Feed
This is a scrapper to easily fetch any feed and interact with Instagram (like, follow, etc.) without OAuth for PHP.
Stars: ✭ 435 (+935.71%)
Mutual labels:  instagram-api, instagram
InstagramCpp
Instagram REST API client wirtten in C++
Stars: ✭ 24 (-42.86%)
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 (+35.71%)
Mutual labels:  instagram, instagram-api
Instagram Scraper
Scrapes an instagram user's photos and videos
Stars: ✭ 5,664 (+13385.71%)
Mutual labels:  instagram-api, instagram
Goinsta
Unofficial Instagram API written in Golang
Stars: ✭ 733 (+1645.24%)
Mutual labels:  instagram-api, instagram

βš›οΈπŸ“Έ Gatsby source plugin to fetch ALL your instagram media from Instagram API + Gatsby Image support.

Demo

Install

  1. yarn add gatsby-source-instagram-all
  2. Add this configuration to your gatsby-config.js:
{
     resolve: `gatsby-source-instagram-all`,
     options: {
       access_token: "YOUR_ACCESS_TOKEN"
     }
}

πŸ‘“ Watch this video if you're having trouble generating your access token.

How to use

Query data like this:

query myQuery {
 allInstagramContent {
   edges {
     node {
       caption
       media_url
       localImage {
         childImageSharp {
           fluid(maxHeight: 500, maxWidth: 500, quality: 90) {
             ...GatsbyImageSharpFluid_withWebp
           }
         }
       }
     }
   }
 }
}

Plugin Options

Option Type Description
access_token string Your access token
max_id string (optional) Option to return media earlier than, but not including, this max_id
min_id string (optional) Option to return media later than, and including, this min_id

Contribute

  1. Fork it
  2. Create your feature branch git checkout -b feature/fooBar
  3. Commit your changes git commit -am 'Add some fooBar'
  4. Push to the branch git push origin feature/fooBar
  5. Create a new Pull Request
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].