Interactive Agent Authentication Authorization Flow
In brief
The interactive agent authentication and authorization documentation now includes `using Microsoft.AspNetCore.Authentication.JwtBearer;` in its C# setup samples.
What Entra admins need to know
Administrators and developers using the sample can copy a more complete setup; the change does not indicate a product behavior change.
This editorial summary was generated by AI from the documentation changes. Verify important details in the full Microsoft Learn article.
Documentation change
The comparison below shows only the changed extract. Use the full-page view for complete context.
```csharp
// Program.cs
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.Identity.Web;
var builder = WebApplication.CreateBuilder(args);
@@ -199,6 +199,7 @@ The web API must validate the incoming access token before the agent can act. Al ```csharp // Program.cs+ using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.Identity.Web; var builder = WebApplication.CreateBuilder(args); 