@@ -41,23 +41,23 @@ func RegisterBrokenAuthHeaderProvider(tokenURL string) {}
41
41
// package (https://golang.org/x/oauth2/clientcredentials).
42
42
type Config struct {
43
43
// ClientID is the application's ID.
44
- ClientID string
44
+ ClientID string `json:"client_id"`
45
45
46
46
// ClientSecret is the application's secret.
47
- ClientSecret string
47
+ ClientSecret string `json:"client_secret"`
48
48
49
49
// Endpoint contains the resource server's token endpoint
50
50
// URLs. These are constants specific to each server and are
51
51
// often available via site-specific packages, such as
52
52
// google.Endpoint or github.Endpoint.
53
- Endpoint Endpoint
53
+ Endpoint Endpoint `json:"endpoint"`
54
54
55
55
// RedirectURL is the URL to redirect users going through
56
56
// the OAuth flow, after the resource owner's URLs.
57
- RedirectURL string
57
+ RedirectURL string `json:"redirect_url,omitempty"`
58
58
59
59
// Scope specifies optional requested permissions.
60
- Scopes []string
60
+ Scopes []string `json:"scopes,omitempty"`
61
61
62
62
// authStyleCache caches which auth style to use when Endpoint.AuthStyle is
63
63
// the zero value (AuthStyleAutoDetect).
@@ -75,14 +75,14 @@ type TokenSource interface {
75
75
// Endpoint represents an OAuth 2.0 provider's authorization and token
76
76
// endpoint URLs.
77
77
type Endpoint struct {
78
- AuthURL string
79
- DeviceAuthURL string
80
- TokenURL string
78
+ AuthURL string `json:"auth_url,omitempty"`
79
+ DeviceAuthURL string `json:"device_auth_url,omitempty"`
80
+ TokenURL string `json:"token_url,omitempty"`
81
81
82
82
// AuthStyle optionally specifies how the endpoint wants the
83
83
// client ID & client secret sent. The zero value means to
84
84
// auto-detect.
85
- AuthStyle AuthStyle
85
+ AuthStyle AuthStyle `json:"auth_style,omitempty"`
86
86
}
87
87
88
88
// AuthStyle represents how requests for tokens are authenticated
0 commit comments