All Projects → hieven → go-instagram

hieven / go-instagram

Licence: MIT License
Instagram private API in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to go-instagram

instagram-token-agent
A service to keep your Instagram Basic Display API token fresh.
Stars: ✭ 118 (+66.2%)
Mutual labels:  instagram, instagram-api
Insta flters with python
With this program you can add hat & glass on your face(it's support multiple faces)
Stars: ✭ 21 (-70.42%)
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 (+92.96%)
Mutual labels:  instagram, instagram-api
kirby3-instagram
Kirby 3 Plugin to call Instagram (or any other) API Endpoints
Stars: ✭ 20 (-71.83%)
Mutual labels:  instagram, instagram-api
igFame
📷 igFame - Tool for automated Instagram interactions [PHP]
Stars: ✭ 16 (-77.46%)
Mutual labels:  instagram, instagram-api
Brutegram
Instagram multi-bruteforce Platfrom
Stars: ✭ 183 (+157.75%)
Mutual labels:  instagram, instagram-api
InstaLite
Instagram api not official easy-to-use class, minimal number of features
Stars: ✭ 72 (+1.41%)
Mutual labels:  instagram, instagram-api
Instagram Php Scraper
Get account information, photos, videos, stories and comments.
Stars: ✭ 2,490 (+3407.04%)
Mutual labels:  instagram, instagram-api
InstaLV
Live stream from desktop to Instagram
Stars: ✭ 27 (-61.97%)
Mutual labels:  instagram, instagram-api
instragram-follow
Automatically follow Instagram accounts
Stars: ✭ 23 (-67.61%)
Mutual labels:  instagram, instagram-api
instapi
📷 Python Instagram API
Stars: ✭ 33 (-53.52%)
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 (-46.48%)
Mutual labels:  instagram, instagram-api
Instagram Proxy Api
CORS compliant API to access Instagram's public data
Stars: ✭ 245 (+245.07%)
Mutual labels:  instagram, instagram-api
jekyll-instagram
A Jekyll plugin for displaying your recent Instagram photos
Stars: ✭ 24 (-66.2%)
Mutual labels:  instagram, instagram-api
Instagram Api Python
Unofficial instagram API, give you access to ALL instagram features (like, follow, upload photo and video and etc)! Write on python.
Stars: ✭ 2,357 (+3219.72%)
Mutual labels:  instagram, instagram-api
instagram-oauth-nodejs-server
Node.js server for Intagram-API OAuth purpose.
Stars: ✭ 12 (-83.1%)
Mutual labels:  instagram, instagram-api
Swiftyinsta
Instagram Private API Swift
Stars: ✭ 165 (+132.39%)
Mutual labels:  instagram, instagram-api
Instabotai
Instagram AI bot with face detection. It works without instagram api, need only login and password.
Stars: ✭ 181 (+154.93%)
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 (-12.68%)
Mutual labels:  instagram, instagram-api
instagram-api-clone
Instagram RESTful API clone made with Django REST framework
Stars: ✭ 56 (-21.13%)
Mutual labels:  instagram, instagram-api

go-instagram

Build Statuscodecov

This project is for study and personal use only. We hold no responsibilty of any use that violate Instagram's terms and conditions.

Installation

$ go get github.com/hieven/go-instagram

Documentation

  • GoDoc Instagram
  • GoDoc Instagram Models

Features

You can use this repo to:

  • like/unlike media
  • get timeline feed
  • get ranked media / recent media of a location
  • get inbox messages
  • broadcast to any inbox thread
  • approve pending inbox thread

The project is still in its early stage. Any pull request to extend its functionalities is most welcome.

Example

cnf := &config.Config{
  Username: "USERNAME",
  Password: "PASSWORD",
}

ctx := context.Background()

ig, _ := instagram.New(cnf)
ig.Login(ctx)

Aresp, _ := ig.Timeline().Feed(ctx, instagram.TimelineFeedReques{})
fmt.Println(Aresp.Items[0].MediaOrAd)

Find more complex examples on examples

License

MIT

Similar Projects

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].