Hi all, When using the AzureAD Provider, does any...
# general
d
Hi all, When using the AzureAD Provider, does anyone know how to configure API Permissions when configuring a new application?
Copy code
var serverApplication = new AzureAD.Application($"{prefix}-{appName}", new AzureAD.ApplicationArgs
    {
        
        SignInAudience = "AzureADandPersonalMicrosoftAccount",
        SinglePageApplication = new ApplicationSinglePageApplicationArgs
        {
            RedirectUris = "<http://localhost:4200/>"
        },
        DisplayName = "Azure AD Example Server",
        IdentifierUris =
        {
            $"api://{prefix}-{appName}"
        },
        Api = new AzureAD.Inputs.ApplicationApiArgs
        {
            RequestedAccessTokenVersion = 2,
        },
        
    });
I'm trying to delegate the token to another backend API. Thanks