Default implicit flow in Microsoft Identify web #131
Replies: 2 comments 1 reply
-
Where do you see auth code not being the default @kunj-sangani? |
Beta Was this translation helpful? Give feedback.
-
Thank you for taking this question Grant type implicity is default when we add below lines of code after adding Microsoft.Identity.Web nuget package builder.Services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) This indicates that if we want to use grant type Auth code with PKCE grant type then we need to configure it in a different way which is actually not properly documented and I think it should be the default one when used using the above code and if some one wants to use implicity grant type then they should change the configuration services.AddAuthentication(AzureADDefaults.AuthenticationScheme)
|
Beta Was this translation helpful? Give feedback.
-
Why is auth code not default grant types when we use Microsoft Identify web currently we have implicit flow grant type which has its own drawbacks and hence Auth code flow would be a better option
Beta Was this translation helpful? Give feedback.
All reactions