【发布时间】:2015-01-09 11:26:18
【问题描述】:
我添加了以下范围来访问用户的数据
#region Google
var googleAuthenticationOptions = new GoogleOAuth2AuthenticationOptions()
{
ClientId = ConfigurationManager.AppSettings["Google_AppID"],
ClientSecret = ConfigurationManager.AppSettings["Google_AppSecret"]
};
googleAuthenticationOptions.Scope.Add("profile");
googleAuthenticationOptions.Scope.Add("email");
googleAuthenticationOptions.Provider = new GoogleOAuth2AuthenticationProvider()
{
OnAuthenticated = async context =>
{
//context.Identity.AddClaim(new Claim("birthday", context.User.GetValue("birthday").ToString()));
string claimType;
bool bAddClaim = false;
foreach (var claim in context.User)
{
claimType = string.Empty;
bAddClaim = false;
switch (claim.Key)
{
case "given_name":
claimType = "FirstName";
bAddClaim = true;
break;
case "family_name":
claimType = "LastName";
bAddClaim = true;
break;
case "gender":
claimType = "gender";
bAddClaim = true;
break;
}
if (bAddClaim)
{
string claimValue = claim.Value.ToString();
if (!context.Identity.HasClaim(claimType, claimValue))
context.Identity.AddClaim(new System.Security.Claims.Claim(claimType, claimValue, "XmlSchemaString", "Google"));
}
}
}
};
在 context.user 通过放置断点在侧 foreach 循环中进行调试 我正在获取以下信息
{ “子”:“101111724115925537597”, “名称”:“阿洛克纳特”, "given_name": "好吧", "family_name": "内斯", “个人资料”:“https://plus.google.com/101111724115925537597”, “图片”:“https://lh3.googleusercontent.com/XdUIqdMkCWA/AAAAAAAAAAAI/AAAAAAAAAA/4252rscbv5M/ 照片.jpg", “电子邮件”:“aloknathbabuji786@gmail.com”, “email_verified”:是的, “性别”:“男性”, “语言环境”:“en” }因此,即使添加了“个人资料”范围,我也不会将生日作为返回值的一部分。我已确保该个人资料的生日可见性设置为公开,即对所有人可见。为了从 Google 检索生日,我需要执行任何特定范围或特定设置吗?
或者有什么办法可以解决这个问题,请发布解决方案
【问题讨论】:
-
您是否尝试将 nuget 包 Google.Apis.OAuth2.v2 客户端库 添加到您的项目中?这也为您的范围提供了一个枚举,因此您可以说:
Scope = { Oauth2Service.Scope.UserinfoProfile, Oauth2Service.Scope.UserinfoEmail }而不是使用字符串
标签: c# asp.net-mvc oauth google-oauth owin