Skip to content
This repository has been archived by the owner on Sep 8, 2020. It is now read-only.

Commit

Permalink
Fix missing redirect_uri error
Browse files Browse the repository at this point in the history
(from bitly#389)
  • Loading branch information
benley committed Jun 2, 2017
1 parent fe1a069 commit 2b23bcc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions providers/oidc.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ func NewOIDCProvider(p *ProviderData) *OIDCProvider {
func (p *OIDCProvider) Redeem(redirectURL, code string) (s *SessionState, err error) {
ctx := context.Background()
c := oauth2.Config{
RedirectURL: redirectURL,
ClientID: p.ClientID,
ClientSecret: p.ClientSecret,
Endpoint: oauth2.Endpoint{
Expand Down

0 comments on commit 2b23bcc

Please sign in to comment.