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