Skip to content

Commit

Permalink
GitHubOIDCProvider response link fix - missing ampersand.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafek committed Feb 22, 2024
1 parent 46a9b73 commit 6e3e2d8
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 6e3e2d8

Please sign in to comment.