Get delegate permission in MSAL for EWS without PublicClientApplicationBuilder and AcquireTokenInteractive

限于喜欢 提交于 2021-02-17 05:14:09

问题


In EWS OAuth flow we can get delegate permissions by following:

var pcaOptions = new PublicClientApplicationOptions
{
    ClientId = ConfigurationManager.AppSettings["appId"],
    TenantId = ConfigurationManager.AppSettings["tenantId"]
};

var pca = PublicClientApplicationBuilder
    .CreateWithApplicationOptions(pcaOptions).Build();

// The permission scope required for EWS access
var ewsScopes = new string[] { "https://outlook.office.com/EWS.AccessAsUser.All" };

// Make the interactive token request
var authResult = await pca.AcquireTokenInteractive(ewsScopes).ExecuteAsync();

Above code opens the dialog for putting in Username/Password.

Is there any way I can bypass the dialog and request token by providing credentials in code itself, but with delegated permissions only


回答1:


Yes what you talking about is ROPC https://docs.microsoft.com/en-us/azure/active-directory//develop/v2-oauth-ropc . Using credentials this way is generally discouraged because of the trust issue around handling credentials directly. The one thing you need to ensure is in that in your application registration you have

Treat application as a public client.

Select in the Authentication tag (it down the very bottom)

For the code look at https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Username-Password-Authentication eg

NetworkCredential Credentials =  new NetworkCredential(UserName,Password); 
pca.AcquireTokenByUsernamePassword(ewsScopes,Credentials.UserName, Credentials.SecurePassword).ExecuteAsync();

If your looking for a more secure way consider using Managed Identities https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview



来源:https://stackoverflow.com/questions/61018045/get-delegate-permission-in-msal-for-ews-without-publicclientapplicationbuilder-a

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!