以下是我面临的问题:
以下是过去几天我一直在经历的痛苦总结。
VS2013项目模板将此代码用于帐户控制器中的SignIn方法:
WsFederationConfiguration config = FederatedAuthentication.FederationConfiguration.WsFederationConfiguration;
string callbackUrl = Url.Action("Index", "Home", routeValues: null, protocol: Request.Url.Scheme);
SignInRequestMessage signInRequest = FederatedAuthentication.WSFederationAuthenticationModule.CreateSignInRequest(
uniqueId: String.Empty,
returnUrl: callbackUrl,
rememberMeSet: false);
signInRequest.SetParameter("wtrealm", IdentityConfig.Realm ?? config.Realm);
return new RedirectResult(signInRequest.RequestUrl.ToString());
github的示例项目使用:
HttpContext.GetOwinContext()
.Authentication.Challenge(new AuthenticationProperties {RedirectUri = "/"},
OpenIdConnectAuthenticationDefaults.AuthenticationType);
然后在启动类上它捕获AuthorizationCodeReceived,如下所示:
app.UseOpenIdConnectAuthentication(
new OpenIdConnectAuthenticationOptions
{
ClientId = clientId,
Authority = Authority,
PostLogoutRedirectUri = postLogoutRedirectUri,
Notifications = new OpenIdConnectAuthenticationNotifications()
{
//
// If there is a code in the OpenID Connect response, redeem it for an access token and refresh token, and store those away.
//
AuthorizationCodeReceived = (context) =>
{
var code = context.Code;
然后将它保存在TokenCache中,当调用图形API时,它会像这样用缓存启动AuthenticationContext类
AuthenticationContext authContext = new AuthenticationContext(Startup.Authority,
new NaiveSessionCache(userObjectID));
ClientCredential credential = new ClientCredential(clientId, appKey);
result = authContext.AcquireTokenSilent(graphResourceId, credential,
new UserIdentifier(userObjectID, UserIdentifierType.UniqueId));
我试图做的是:
AuthenticationContext authContext = new AuthenticationContext(authority);
ClientCredential credential = new ClientCredential(clientId, appKey);
result = await authContext.AcquireTokenAsync(graphResourceId,credential);
这将返回一个包含一些缺少信息的较短标记。
如果您使用MVC和组织帐户登录在VS2013中创建新项目,则可以轻松复制此问题,然后尝试调用图API。
我需要一种使用VS2013中的模板项目调用图API的方法。
答案 0 :(得分:0)
我们就此问题与Microsoft支持部门联系,以下是该解决方案的摘要。从VS2013创建的模板使用WSFederation库进行身份验证。没有简单的方法可以使用它来调用Graph API。 Microsoft在VS2015中对此进行了纠正,其中相同的模板使用OpenID库进行身份验证,然后您可以调用Graph API。