Skip to content

jurka/facebook

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Facebook Graph API Client In Go

This library perfectly supports most graph API with very handy methods.

Here is a quick tutorial.

import (
    "fmt"
    "github.com/huandu/facebook"
)

func main() {
    res, _ := facebook.Api("/538744468", facebook.GET, facebook.Params{
        "fields": "username",
    })
    fmt.Println("here is my facebook username:", res["username"])
}

For more documents, please use go doc.

This library is licensed under MIT license.

About

Facebook Graph API Client In Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%