microsoft-identity-web icon indicating copy to clipboard operation
microsoft-identity-web copied to clipboard

Helps creating protected web apps and web APIs with Microsoft identity platform and Azure AD B2C

Results 270 microsoft-identity-web issues
Sort by recently updated
recently updated
newest added

### Microsoft.Identity.Web Library Microsoft.Identity.Web ### Microsoft.Identity.Web version 2.9.0 ### Web app Not Applicable ### Web API Not Applicable ### Token cache serialization Not Applicable ### Description In `MicrosoftIdentityWebApiAuthenticationBuilderExtensions.AddMicrosoftIdentityWebApiImplementation` ```cs if...

documentation
question

# Use `ManagedIdentityCredential` instead of `DefaultAzureCredential` for MI scenarios ## Description For Azure.Identity credential scenarios where Managed Identity is needed, we should use `ManagedIdentityCredential` rather than `DefaultAzureCredential`. `DefaultAzureCredential` now has...

The default and only widely-used public registry for NodeJS packages, https://registry.npmjs.org/, does not currently flag the "passport-azure-ad" package as being deprecated, despite the deprecation notice published to the README of...

#Perform AOT check on repository Added a script and yml file and a test app to perform AOT check on repository for every pull request. This script will notify us...

### Microsoft.Identity.Web Library Microsoft.Identity.Web ### Microsoft.Identity.Web version 2.18.1 ### Web app Not Applicable ### Web API Protected web APIs call downstream web APIs ### Token cache serialization In-memory caches ###...

question
answered
cert-less

### Microsoft.Identity.Web Library Microsoft.Identity.Web.DownstreamApi ### Microsoft.Identity.Web version 2.18.1 ### Web app Sign-in users ### Web API Protected web APIs (validating tokens) ### Token cache serialization In-memory caches ### Description **Observed...

untriaged
needs attention

> Status Code: 0 Microsoft.Graph.ServiceException: Code: generalException Message: An error occurred sending the request. > System.ObjectDisposedException: Instances cannot be resolved and nested lifetimes cannot be created from this LifetimeScope as...

### Documentation related to component The document claims sending nthe x5c data is enough for auto cert rotation, however this is not correct. ### Please check all that apply -...

documentation
untriaged
needs attention

I am using a multi auth scheme in my Blazor application: ```csharp services .AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme) .AddCookie(options => options.EventsType = typeof(CookieAuthEvents)); services .AddAuthentication() .AddMicrosoftIdentityWebApp( configuration.GetSection("AzureAD"), openIdConnectScheme: OpenIdConnectDefaults.AuthenticationScheme, //https://github.com/AzureAD/microsoft-identity-web/wiki/multiple-authentication-schemes#cookie-schemes cookieScheme: null) .EnableTokenAcquisitionToCallDownstreamApi() .AddMicrosoftGraph(configuration.GetSection("GraphApi"))...

Blazor
multiple auth schemes