We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ed467 commit 0cb25d8Copy full SHA for 0cb25d8
examples/all.go
@@ -15,7 +15,7 @@ func main() {
15
g.AddProvider(goic.Yahoo.WithCredential(os.Getenv("YAHOO_CLIENT_ID"), os.Getenv("YAHOO_CLIENT_SECRET")))
16
17
g.UserCallback(func(t *goic.Token, u *goic.User, w http.ResponseWriter, r *http.Request) {
18
- log.Println("token: ", t, "\nuser: ", u)
+ log.Printf("token: %v\nuser: %v\n", t, u)
19
_, _ = w.Write([]byte("All good, check backend console"))
20
})
21
0 commit comments