Skip to content

Commit

Permalink
Merge pull request #26 from rafek/master
Browse files Browse the repository at this point in the history
GitHubOIDCProvider response link fix - missing ampersand.
  • Loading branch information
BenediktHensen authored Mar 5, 2024
2 parents 46a9b73 + 6e3e2d8 commit c0339fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public override void OpenLoginPage(string[] scopes, string redirectUri)

string responseType = AuthorizationFlow == AuthorizationFlow.AUTHORIZATION_CODE ? "code" : "token";
string uriScopes = UriUtils.WordArrayToSpaceEscapedString(scopes);
string uri = authorizationEndpoint + $"?client_id={ClientData.ClientId}&redirect_uri={redirectUri}" + $"response_type={responseType}&scope={uriScopes}";
string uri = authorizationEndpoint + $"?client_id={ClientData.ClientId}&redirect_uri={redirectUri}" + $"&response_type={responseType}&scope={uriScopes}";
Browser.OpenURL(uri);
}
}
Expand Down

0 comments on commit c0339fc

Please sign in to comment.