Autonomous Agent Authentication Authorization Flow
In brief
The autonomous agent authentication and authorization flow documentation now adds `using Microsoft.Identity.Web;` to a C# setup sample.
What Entra admins need to know
Administrators following the sample have the required namespace included in the documented setup.
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
using Microsoft.Identity.Abstractions;
using Microsoft.Identity.Web;
using Microsoft.Identity.Web.Resource;
using Microsoft.IdentityModel.S2S.Extensions.AspNetCore;
@@ -355,6 +355,7 @@ To use `Microsoft.Identity.Web` to create an agent's user account, follow these ```csharp using Microsoft.Identity.Abstractions;+ using Microsoft.Identity.Web; using Microsoft.Identity.Web.Resource; using Microsoft.IdentityModel.S2S.Extensions.AspNetCore; 