1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
// Copyright 2020 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The tokenauth command demonstrates using a Personal Access Token (PAT) to
// authenticate with GitHub.
// You can test out a GitHub Personal Access Token using this simple example.
// You can generate them here: https://github.com/settings/tokens
package main
import (
"context"
"fmt"
"log"
"os"
"github.com/google/go-github/v60/github"
"golang.org/x/term"
)
func main() {
fmt.Print("GitHub Token: ")
byteToken, _ := term.ReadPassword(int(os.Stdin.Fd()))
println()
token := string(byteToken)
ctx := context.Background()
client := github.NewClient(nil).WithAuthToken(token)
user, resp, err := client.Users.Get(ctx, "")
if err != nil {
fmt.Printf("\nerror: %v\n", err)
return
}
// Rate.Limit should most likely be 5000 when authorized.
log.Printf("Rate: %#v\n", resp.Rate)
// If a Token Expiration has been set, it will be displayed.
if !resp.TokenExpiration.IsZero() {
log.Printf("Token Expiration: %v\n", resp.TokenExpiration)
}
fmt.Printf("\n%v\n", github.Stringify(user))
}
|