gpt4 book ai didi

asp.net - 如何从 ASP.net 中的主体获取电子邮件地址?

转载 作者:行者123 更新时间:2023-12-03 14:10:20 26 4
gpt4 key购买 nike

我正在尝试获取与当前用户关联的电子邮件。
下面显示了我在身份验证中添加 Claims 的几行。

public override async Task GrantResourceOwnerCredentials(OAuthGrantResourceOwnerCredentialsContext context)
{
var identity = new ClaimsIdentity(context.Options.AuthenticationType);
try
{
CreateDataConnection();
R_AuthenticateUser oAuthUser = oDataConnection.Authenticate(context.UserName,context.Password);
string DB_User_roles = oAuthUser.UserLoginRoles;

if (oAuthUser.Authenticated)
{
string[] aray = DB_User_roles.Split(',');

identity.AddClaim(new Claim(ClaimTypes.Name, oAuthUser.UserID.ToString())); // keeps the login_ID
identity.AddClaim(new Claim(ClaimTypes.Email, context.UserName));

foreach (var item in aray)
{
// identity.AddClaim(new Claim(ClaimTypes.NameIdentifier, item));
identity.AddClaim(new Claim(ClaimTypes.Role, item));
}
context.Validated(identity);
}
else //if (context.UserName == "user" && context.Password == "user")
{
context.SetError("Incorrect credntials", "Provided Username and Password is incorrect");
return;
}
}
catch (Exception ex)
{
int y = 0;
}
}

目前在我的 Controller 中,我读取与用户关联的 UserID 如下?
[HttpGet]
[PGAuthorization(Roles = "USER")]
[Route("api/Address/GetAllAddresses")]
public string GetAllAddressesByUser()
{
CreateDataConnection();
Int64 UserID = Convert.ToInt64((User as ClaimsPrincipal).Identity.Name);
List<R_CustomerAddress> oUser = oDataConnection.GetAllAddressesByUser(UserID);
string output = JsonConvert.SerializeObject(oUser);
return output;
}

但是现在我需要使用我在身份验证中添加的电子邮件来获取用户 ID。我尝试使用
Int64 UserID = Convert.ToInt64((User as ClaimsPrincipal).Identity.Email);

但它不起作用。有人可以帮我吗?

最佳答案

如果您在身份验证期间在声明中添加电子邮件,则可以通过以下方式获取:

string email = System.Security.Claims.ClaimsPrincipal.Current.FindFirst(ClaimTypes.Email).Value

关于asp.net - 如何从 ASP.net 中的主体获取电子邮件地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53845810/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com