We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df24cbf commit a46c617Copy full SHA for a46c617
src/AspNet.Security.OAuth.Line/LineAuthenticationHandler.cs
@@ -40,7 +40,7 @@ protected override string BuildChallengeUrl([NotNull] AuthenticationProperties p
40
["redirect_uri"] = redirectUri,
41
["state"] = Options.StateDataFormat.Protect(properties),
42
["scope"] = FormatScope(),
43
- ["prompt"] = Options.Prompt ? "consent" : "none"
+ ["prompt"] = Options.Prompt ? "consent" : string.Empty
44
});
45
46
protected override async Task<OAuthTokenResponse> ExchangeCodeAsync([NotNull] OAuthCodeExchangeContext context)
0 commit comments