oauth2: improve the custom HTTP client example

Fix the broken build and make it consistent with
the first example.

Change-Id: I7c240b826397e6ec04294a2c9de89762d68643de
Reviewed-on: https://go-review.googlesource.com/61050
Run-TryBot: JBD <jbd@google.com>
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
This commit is contained in:
Jaana Burcu Dogan 2017-09-01 10:40:05 -07:00 committed by Emmanuel Odeke
parent 3d1522b268
commit d89af98d7c
1 changed files with 23 additions and 14 deletions

View File

@ -48,9 +48,8 @@ func ExampleConfig() {
client.Get("...") client.Get("...")
} }
func ExampleCustomHTTP() { func ExampleConfig_customHTTP() {
hc := &http.Client{Timeout: 2 * time.Second} ctx := context.Background()
ctx := context.WithValue(context.Background(), oauth2.HTTPClient, hc)
conf := &oauth2.Config{ conf := &oauth2.Config{
ClientID: "YOUR_CLIENT_ID", ClientID: "YOUR_CLIENT_ID",
@ -62,19 +61,29 @@ func ExampleCustomHTTP() {
}, },
} }
tokenSource, err := conf.PasswordCredentialsToken(ctx, "YOUR_USERNAME", "YOUR_PASSWORD") // Redirect user to consent page to ask for permission
// for the scopes specified above.
url := conf.AuthCodeURL("state", oauth2.AccessTypeOffline)
fmt.Printf("Visit the URL for the auth dialog: %v", url)
// Use the authorization code that is pushed to the redirect
// URL. Exchange will do the handshake to retrieve the
// initial access token. The HTTP Client returned by
// conf.Client will refresh the token as necessary.
var code string
if _, err := fmt.Scan(&code); err != nil {
log.Fatal(err)
}
// Use the custom HTTP client when requesting a token.
httpClient := &http.Client{Timeout: 2 * time.Second}
ctx = context.WithValue(ctx, oauth2.HTTPClient, httpClient)
tok, err := conf.Exchange(ctx, code)
if err != nil { if err != nil {
log.Fatal(err) log.Fatal(err)
} }
// The returned client does not reuse client := conf.Client(ctx, tok)
// properties from the hc HTTP Client. _ = client
client := oauth2.NewClient(ctx, tokenSource)
resp, err := client.Get("http://www.example.com")
if err != nil {
log.Fatal(err)
}
_ = resp // use the response
} }