diff --git a/deviceauth.go b/deviceauth.go index e99c92f39..a60840f2b 100644 --- a/deviceauth.go +++ b/deviceauth.go @@ -98,7 +98,7 @@ func retrieveDeviceAuth(ctx context.Context, c *Config, v url.Values) (*DeviceAu return nil, errors.New("endpoint missing DeviceAuthURL") } - req, err := http.NewRequest("POST", c.Endpoint.DeviceAuthURL, strings.NewReader(v.Encode())) + req, err := http.NewRequestWithContext(ctx, "POST", c.Endpoint.DeviceAuthURL, strings.NewReader(v.Encode())) if err != nil { return nil, err } diff --git a/internal/token.go b/internal/token.go index e83ddeef0..d3a68cfe1 100644 --- a/internal/token.go +++ b/internal/token.go @@ -180,7 +180,7 @@ func (c *AuthStyleCache) setAuthStyle(tokenURL string, v AuthStyle) { // as the POST body. An 'inParams' value of true means to send it in // the POST body (along with any values in v); false means to send it // in the Authorization header. -func newTokenRequest(tokenURL, clientID, clientSecret string, v url.Values, authStyle AuthStyle) (*http.Request, error) { +func newTokenRequest(ctx context.Context, tokenURL, clientID, clientSecret string, v url.Values, authStyle AuthStyle) (*http.Request, error) { if authStyle == AuthStyleInParams { v = cloneURLValues(v) if clientID != "" { @@ -190,7 +190,7 @@ func newTokenRequest(tokenURL, clientID, clientSecret string, v url.Values, auth v.Set("client_secret", clientSecret) } } - req, err := http.NewRequest("POST", tokenURL, strings.NewReader(v.Encode())) + req, err := http.NewRequestWithContext(ctx, "POST", tokenURL, strings.NewReader(v.Encode())) if err != nil { return nil, err } @@ -219,7 +219,7 @@ func RetrieveToken(ctx context.Context, clientID, clientSecret, tokenURL string, authStyle = AuthStyleInHeader // the first way we'll try } } - req, err := newTokenRequest(tokenURL, clientID, clientSecret, v, authStyle) + req, err := newTokenRequest(ctx, tokenURL, clientID, clientSecret, v, authStyle) if err != nil { return nil, err } @@ -238,7 +238,7 @@ func RetrieveToken(ctx context.Context, clientID, clientSecret, tokenURL string, // they went, but maintaining it didn't scale & got annoying. // So just try both ways. authStyle = AuthStyleInParams // the second way we'll try - req, _ = newTokenRequest(tokenURL, clientID, clientSecret, v, authStyle) + req, _ = newTokenRequest(ctx, tokenURL, clientID, clientSecret, v, authStyle) token, err = doTokenRoundTrip(ctx, req) } if needsAuthStyleProbe && err == nil {