如何在使用IdentityServer进行身份验证后获取WebAPI控制器上的用户信息?

时间:2015-07-01 12:12:20

标签: c# asp.net-web-api owin jwt identityserver3

在我的客户端应用程序成功验证IdentityServer3后,我无法在WebAPI控制器上获取用户信息。以下是步骤:

  1. “使用个人资料和访问令牌登录”从JavaScript Implicit Client app
  2. 成功登录
  3. 我在“ID令牌内容”面板上看到用户的数据 enter image description here
  4. 我对我的WebAPI服务执行“呼叫服务”,我在ClaimsPrincipal中看到了许多声明,但无法获取客户端显示的电子邮件,角色等值。以下是代码&响应。
  5. enter image description here 任何人都可以帮我提供一些如何在WebAPI上获取用户数据的帮助吗?

1 个答案:

答案 0 :(得分:5)

如果您使用owin,则可以尝试此代码。

 var owinUser = TryGetOwinUser();
 var claim= TryGetClaim(owinUser, "email");
 string email = claim.Value;

 private ClaimsPrincipal TryGetOwinUser()
    {
        if (HttpContext.Current == null)
            return null;

        var context = HttpContext.Current.GetOwinContext();
        if (context == null)
            return null;

        if (context.Authentication == null || context.Authentication.User == null)
            return null;

        return context.Authentication.User;
    }

    private Claim TryGetClaim(ClaimsPrincipal owinUser, string key)
    {
        if (owinUser == null)
            return null;

        if (owinUser.Claims == null)
            return null;

        return owinUser.Claims.FirstOrDefault(o => o.Type.Equals(key));
    }