console application with user token with MSAL in c#?

I have console application and want to create MSAL token.

I tried below code #

 IPublicClientApplication app;
  app = PublicClientApplicationBuilder.Create(clientId).WithAuthority(authority).Build();

  var accounts = await app.GetAccountsAsync();
  AuthenticationResult result = null;

  if (accounts.Any())
  {
      result = await app.AcquireTokenSilent(scopes, accounts.FirstOrDefault()).ExecuteAsync();
  }
  else
  {
      try
      {
          result = await app.AcquireTokenByUsernamePassword(scopes, "[email protected]", "joepassword").ExecuteAsync();
      }
      catch (MsalException)
      {
          // Handle various potential exceptions.
      }
  }

not able get AllowAnonymus token any idea?

1

There are several MSAL samples here, both in the context of a user (desktop) and an application (daemon).

Recognized by Microsoft Azure Collective

1

Note that: If you want to generate the user access token without redirection, then the only way is AcquireTokenByUsernamePassword but this flow is not recommended by Microsoft due to security reasons.

Hence if you want user access token, then redirect is mandatory and If your setup supports redirection then you can make use of user interactive flows. Check this MsDoc as suggested by @rbrayb.

Otherwise, you can make use of Client credential flow which uses the application that accesses the API with its own identity and with no user interaction.

  • This requires application type API permission to be granted to the application.
class Program
{
    static async Task Main(string[] args)
    {
        string tenantId = "TenantID"; 
        string clientId = "ClientID"; 
        string clientSecret = "Secret"; 
        string scope = "https://graph.microsoft.com/.default"; 
        
        var clientSecretCredential = new ClientSecretCredential(tenantId, clientId, clientSecret);
        var tokenRequestContext = new TokenRequestContext(new[] { scope });
        AccessToken token = await clientSecretCredential.GetTokenAsync(tokenRequestContext);

        Console.WriteLine($"Token: {token.Token}");
        Console.WriteLine($"Expires On: {token.ExpiresOn}");
    }
}

If the application context doesn’t suit your scenario, then by default you need to generate token with redirect like below:

class Program
{
    private static async Task Main(string[] args)
    {

        var scopes = new[] { "User.Read" };
        var tenantId = "TenantID";
        var clientId = "ClientID";

        var options = new InteractiveBrowserCredentialOptions
        {
            TenantId = tenantId,
            ClientId = clientId,
            AuthorityHost = AzureAuthorityHosts.AzurePublicCloud,
            RedirectUri = new Uri("http://localhost"),
        };

        var interactiveCredential = new InteractiveBrowserCredential(options);

        TokenRequestContext tokenRequestContext = new TokenRequestContext(scopes);
        AccessToken accessToken;

        try
        {
            accessToken = await interactiveCredential.GetTokenAsync(tokenRequestContext);
            Console.WriteLine($"Access Token: {accessToken.Token}");
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error getting access token: {ex.Message}");
            return;
        }
    }
}

User is redirected to sign-in:

Reference:

Choose an authentication provider | Microsoft

Recognized by Microsoft Azure Collective

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật