gpt4 book ai didi

c# - ASP Identity GetExternalLoginInfoAsync 总是返回 null

转载 作者:太空宇宙 更新时间:2023-11-03 15:37:50 25 4
gpt4 key购买 nike

var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync();
if (loginInfo == null)
{
return RedirectToAction("Login");
}

loginInfo 始终为 null,我用 fiddler 检查响应,网站 (Steam) 似乎返回了正确的值

"response": {
"players": [
{
"steamid": "76561198057961078",
"communityvisibilitystate": 3,
"profilestate": 1,
"personaname": "Press \"R\" to restart™",
"lastlogoff": 1435947642,
"commentpermission": 2,
"profileurl": "http://steamcommunity.com/id/warheat1990/",
"avatar": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/59/598fa035b19342a9e0b26a8115e8ddc5da0cc900.jpg",
"avatarmedium": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/59/598fa035b19342a9e0b26a8115e8ddc5da0cc900_medium.jpg",
"avatarfull": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/59/598fa035b19342a9e0b26a8115e8ddc5da0cc900_full.jpg",
"personastate": 1,
"primaryclanid": "103582791434936111",
"timecreated": 1327988764,
"personastateflags": 0
}
]

}

那为什么我得到的是空值?我从 SO 中遇到同样问题的人那里读了一堆线程,但到目前为止没有运气。

我们将不胜感激。

最佳答案

所以我得到 null 的原因是因为我在 Startup.Auth 的 app.CreatePerOwinContext 之前放置了 app.UseSteamAuthentication("ABCDEFGHIJKLMNOPQRSTUVWXYZ");。 CS

public void ConfigureAuth(IAppBuilder app)
{
app.UseSteamAuthentication("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); //if you put it here, it won't work
// Configure the db context, user manager and signin manager to use a single instance per request
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);

//rest of the code here
}

所以我把它改成:

public void ConfigureAuth(IAppBuilder app)
{
// Configure the db context, user manager and signin manager to use a single instance per request
app.CreatePerOwinContext(ApplicationDbContext.Create);
app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
app.CreatePerOwinContext<ApplicationSignInManager>(ApplicationSignInManager.Create);

//rest of the code here
app.UseSteamAuthentication("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); //works!
}

关于c# - ASP Identity GetExternalLoginInfoAsync 总是返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31216874/

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