gpt4 book ai didi

c# - 在 MSAL 中获取 EWS 的委托(delegate)权限,无需 PublicClientApplicationBuilder 和 AcquireTokenInteractive

转载 作者:行者123 更新时间:2023-12-02 23:41:13 25 4
gpt4 key购买 nike

在 EWS OAuth 流程中,我们可以通过以下方式获取委托(delegate)权限:

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();

以上代码打开用于输入用户名/密码的对话框。

有什么方法可以通过在代码本身中提供凭据来绕过对话框并请求 token ,但仅具有委派权限

最佳答案

是的,你说的是ROPC https://learn.microsoft.com/en-us/azure/active-directory//develop/v2-oauth-ropc 。由于直接处理凭据存在信任问题,通常不鼓励以这种方式使用凭据。您需要确保的一件事是在您的应用程序注册中您有

Treat application as a public client.

选择“身份验证”标签(位于最底部)

代码请查看 https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/wiki/Username-Password-Authentication例如

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

如果您正在寻找更安全的方式,请考虑使用托管身份 https://learn.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/overview

关于c# - 在 MSAL 中获取 EWS 的委托(delegate)权限,无需 PublicClientApplicationBuilder 和 AcquireTokenInteractive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61018045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com