我的问题是:当我使用Microsoft的项目时,标题中提到的代码行运行并正确验证,我可以对用户执行操作,如“B2CGraphClient”示例项目中所示。 然而当我将B2CGraphClient.cs
复制并粘贴到我的网络应用程序中时,这行代码将永远挂起。怎么会这样?
挂起的行是B2CGraphClient.cs
中的#184。
详细说明:
我正在使用此article中提到的名为“B2CGraphClient”的示例项目,其zipfile位于here。这些文件需要设置变量clientId
,clientSecret
和tenant
,我能够正确设置这些变量以适合我的AAD B2C实例。当我将B2CGraphClient.cs
代码复制到我的Web应用程序项目中时,这些变量的值也已正确设置,因此我认为这不是问题。
线索: 这些观察可能是问题所在:
https://login.microsoftonline.com/<my_domain>.onmicrosoft.com/B2C_1_SiUpIn/......
我知道B2C_1_SiUpIn
策略名称不应该在此URL。但是我该如何解决这个问题?谢谢!
更新
我发布了初始化B2CGraphClient的代码,该代码显示(至少在我看来)传递到客户端以创建其凭据的唯一信息是clientId
,clientSecret
和tenant
名称。
public B2CGraphClient(string clientId, string clientSecret, string tenant)
{
// The client_id, client_secret, and tenant are pulled in from the App.config file
this.clientId = clientId;
this.clientSecret = clientSecret;
this.tenant = tenant;
// The AuthenticationContext is ADAL's primary class, in which you indicate the direcotry to use.
this.authContext = new AuthenticationContext("https://login.microsoftonline.com/" + tenant);
// The ClientCredential is where you pass in your client_id and client_secret, which are
// provided to Azure AD in order to receive an access_token using the app's identity.
this.credential = new ClientCredential(clientId, clientSecret);
}
credential
稍后用于验证图形客户端:
AuthenticationResult result = await authContext.AcquireTokenAsync(aadGraphResourceId, credential);
答案 0 :(得分:2)
school/
students/
teachers/
library/
application/
system/
assets/
index.php
.htaccess
。
要将B2CGraphClient
集成到Web应用程序中,您应该将B2CGraphClient
调用从同步方法更改为异步方法。
E.g。改变自:
AcquireToken
为:
AuthenticationResult authResult = authContext.AcquireToken("https://graph.windows.net", credential);