Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
github
✓ github.com/google/go-github/v42/github
Fetch a GitHub user's profile.
package main
import (
"context"
"github.com/google/go-github/v42/github"
)
func main() {
client := github.NewClient(nil)
user, _, err := client.Users.Get(context.Background(), "octocat")
if err != nil {
panic(err)
}
println(*user.Login)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
42.0.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.