https://github.com/aliforever/gista
Golang Instagram Private API
https://github.com/aliforever/gista
gista go go-instagram goinsta golang golang-instagram instagram instagram-api private-instagram-api
Last synced: 5 months ago
JSON representation
Golang Instagram Private API
- Host: GitHub
- URL: https://github.com/aliforever/gista
- Owner: aliforever
- License: mit
- Created: 2019-05-11T02:54:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-28T23:23:18.000Z (over 6 years ago)
- Last Synced: 2024-06-20T15:45:26.006Z (almost 2 years ago)
- Topics: gista, go, go-instagram, goinsta, golang, golang-instagram, instagram, instagram-api, private-instagram-api
- Language: Go
- Homepage: https://aliforever.github.io/gista/
- Size: 238 KB
- Stars: 25
- Watchers: 4
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gista
Golang Instagram Private API
The library is ported from PHP (https://github.com/mgp25/Instagram-API), The mother of all private instagram
libraries.
## Installation
```sh
go get github.com/aliforever/gista
```
```go
package main
import (
"fmt"
"github.com/aliforever/gista"
)
func main() {
ig,err := gista.New(nil)
if err != nil {
fmt.Println(err)
return
}
username, password := "",""
err = ig.Login(username, password, false)
if err != nil {
fmt.Println(err)
return
}
}
```
Contribute to the library by completing the missing methods, simply copy them from the PHP API (with a tiny change).