OKTA validation calls me, it validates my account, but when it directs me to the URL I get the following error: IDX21323: RequireNonce is ‘System.Boolean’. OpenIdConnectProtocolValidationContext.Nonce was null, OpenIdConnectProtocol.ValidatedIdToken.Payload.Nonce was not null. The nonce cannot be validated. If you don’t need to check the nonce, set OpenIdConnectProtocolValidator.RequireNonce to ‘false’. Note if a ‘nonce’ is found it will be evaluated.
Hello,
When you test can you open the dev console window and view the network calls.
Verify that the sign-in route that redirects to /authorize sets both .NET oidc cookies,
After the /authorize call, on the redirect back to the .NET callback route verify the browser is sending both cookies, Cookie: .AspNetCore.OpenIdConnect.Nonce.CfDJ8NuYH8...Sqw=N; .AspNetCore.Correlation.OpenIdConnect.7bVwiH...ak0=N
Note this is functionality of .NET, not the Okta SDK. Check how the cookies are being stored (http-only, samesite, secure, expiry time) and that they are being sent with the request callback. Sounds like they are not.