KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
go-instagram
★ 73
Open GitHub ↗
Instagram private API in Go
Download README (.md)
Explore Similar Repositories
Instagram-private-API
:
No description available.
instagram-ai-chatbot
:
An Instagram bot focused on acting human, powered by AI using ChatGPT.
instagram-private-api
:
Instagram private api as Ruby gem
instagram-enc_passowrd-generator
:
Web Instagram private API's enc_password generator.
charles-proxy-instagram-requests
:
Instagram Private API Requests Exported From Charles Proxy
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
go-instagram
?
Download (.md)
# go-instagram [](https://travis-ci.org/hieven/go-instagram)[](https://codecov.io/gh/hiEven/go-instagram) This project is for study and personal use only. We hold no responsibilty of any use that violate Instagram's terms and conditions. ## Installation ```sh $ go get github.com/hieven/go-instagram ``` ## Documentation - [](https://godoc.org/github.com/hieven/go-instagram) Instagram - [](https://godoc.org/github.com/hieven/go-instagram/models) 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 ```go 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](examples) ## License MIT ## Similar Projects - [instagram-private-api](https://github.com/huttarichard/instagram-private-api) (Node.js) - [Instagram-API](https://github.com/mgp25/Instagram-API) (PHP)