Skip to content

Commit ba99a25

Browse files
committed
store conf as json
1 parent e067960 commit ba99a25

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

oauth2.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@ func RegisterBrokenAuthHeaderProvider(tokenURL string) {}
4141
// package (https://golang.org/x/oauth2/clientcredentials).
4242
type Config struct {
4343
// ClientID is the application's ID.
44-
ClientID string
44+
ClientID string `json:"client_id"`
4545

4646
// ClientSecret is the application's secret.
47-
ClientSecret string
47+
ClientSecret string `json:"client_secret"`
4848

4949
// Endpoint contains the resource server's token endpoint
5050
// URLs. These are constants specific to each server and are
5151
// often available via site-specific packages, such as
5252
// google.Endpoint or github.Endpoint.
53-
Endpoint Endpoint
53+
Endpoint Endpoint `json:"endpoint"`
5454

5555
// RedirectURL is the URL to redirect users going through
5656
// the OAuth flow, after the resource owner's URLs.
57-
RedirectURL string
57+
RedirectURL string `json:"redirect_url,omitempty"`
5858

5959
// Scope specifies optional requested permissions.
60-
Scopes []string
60+
Scopes []string `json:"scopes,omitempty"`
6161

6262
// authStyleCache caches which auth style to use when Endpoint.AuthStyle is
6363
// the zero value (AuthStyleAutoDetect).
@@ -75,14 +75,14 @@ type TokenSource interface {
7575
// Endpoint represents an OAuth 2.0 provider's authorization and token
7676
// endpoint URLs.
7777
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"`
8181

8282
// AuthStyle optionally specifies how the endpoint wants the
8383
// client ID & client secret sent. The zero value means to
8484
// auto-detect.
85-
AuthStyle AuthStyle
85+
AuthStyle AuthStyle `json:"auth_style,omitempty"`
8686
}
8787

8888
// AuthStyle represents how requests for tokens are authenticated

0 commit comments

Comments
 (0)