8000 GitHub - i-safari/gista: Golang Instagram Private API
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

i-safari/gista

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

go get github.com/aliforever/gista
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).

About

Golang Instagram Private API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%
0