- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在旧版本的 Microsoft.IdentityModel.Clients.ActiveDirectory 中,有带有 PromptBehavior 参数的 AcquireToken
var context = new AuthenticationContext("https://login.windows.net/tenantId");
var result = context.AcquireToken(clientId: clientIdValue, redirectUri: new Uri("http://localhost/Appcycle"), resource: "https://management.core.windows.net/", promptBehavior: PromptBehavior.Auto);
在 Microsoft.IdentityModel.Clients.ActiveDirectory v3.10 中,只有 AcquireTokenAsync
var authParam = new PlatformParameters(PromptBehavior.Auto,false);
var result = context.AcquireTokenAsync("https://management.core.windows.net/", clientid, new Uri("http://localhost/AppPoolRecycle"), authParam);
result.Wait();
当我运行这个时,我收到错误{“所有者窗口类型无效。预期类型为 IWin32Window 或 IntPtr(对于窗口句柄)。”}
不确定这是否是由于我在控制台应用程序上运行所致。如果是这样我该如何让它工作?
最佳答案
出现此错误的原因是您在 PlatformParameters 构造函数中为第二个参数传递了“false”。
在最新版本的 ADAL (Microsoft.IdentityModel.Clients.ActiveDirectory v3.10) 中,第二个参数是(来自 https://github.com/AzureAD/azure-activedirectory-library-for-dotnet/blob/7c9091a0edecf401fea402275e4a64aca95e40fe/src/ADAL.PCL.Desktop/PlatformParameters.cs):
/// <summary>
/// Gets the owner of the browser dialog which pops up for receiving user credentials. It can be null.
/// </summary>
public object OwnerWindow { get; private set; }
您传入的是 false,由于它是一个对象,因此在编译时会被接受,但由于它不是窗口,因此在运行时不会被接受。
要解决此问题,只需不要传入此参数或将其作为 null 传入。这将使您的控制台应用程序启动一个窗口,提示用户登录。
如果这是一个控制台应用程序,应该无需任何用户交互来运行,那么您应该通过 AcquireTokenAsync 的其他重载来使用仅应用程序流程:
/// <summary>
/// Acquires security token from the authority.
/// </summary>
/// <param name="resource">Identifier of the target resource that is the recipient of the requested token.</param>
/// <param name="clientCredential">The client credential to use for token acquisition.</param>
/// <returns>It contains Access Token and the Access Token's expiration time. Refresh Token property will be null for this overload.</returns>
public async Task<AuthenticationResult> AcquireTokenAsync(string resource, ClientCredential clientCredential)
关于azure - 如何在最新的 Microsoft.IdentityModel.Clients.ActiveDirectory 中使用 PromptBehavior 获取 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38012875/
根据 Documentation PromptBehavior.Auto,我明白: If no token exists in the cache, but the user is known, or
在旧版本的 Microsoft.IdentityModel.Clients.ActiveDirectory 中,有带有 PromptBehavior 参数的 AcquireToken var cont
我是一名优秀的程序员,十分优秀!