7 references to OAuthConstants
Microsoft.AspNetCore.Authentication.OAuth (7)
OAuthHandler.cs (7)
210if (context.Properties.Items.TryGetValue(OAuthConstants.CodeVerifierKey, out var codeVerifier)) 212tokenRequestParameters.Add(OAuthConstants.CodeVerifierKey, codeVerifier!); 213context.Properties.Items.Remove(OAuthConstants.CodeVerifierKey); 320properties.Items.Add(OAuthConstants.CodeVerifierKey, codeVerifier); 325parameters[OAuthConstants.CodeChallengeKey] = codeChallenge; 326parameters[OAuthConstants.CodeChallengeMethodKey] = OAuthConstants.CodeChallengeMethodS256;