Skip to content

Commit

Permalink
update URIs
Browse files Browse the repository at this point in the history
  • Loading branch information
Raajheer1 committed May 24, 2024
1 parent 5e5e894 commit 92ff5a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/oauth/oauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ func Initialize(config *config.Config) *oauth2.Config {
ClientID: config.OAuth.ClientID,
ClientSecret: config.OAuth.ClientSecret,
Endpoint: oauth2.Endpoint{
AuthURL: config.OAuth.BaseURL + "/authorize",
TokenURL: config.OAuth.BaseURL + "/token",
AuthURL: config.OAuth.BaseURL + "/oauth/authorize",
TokenURL: config.OAuth.BaseURL + "/oauth/token",
},
RedirectURL: config.API.BaseURL + "/v3/user/login/callback",
Scopes: []string{"identify", "email"},
Expand Down

0 comments on commit 92ff5a5

Please sign in to comment.