gpt4 book ai didi

c# - 使用 Asp.Net Core Cookie 身份验证的注销操作

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

我已经在 Asp.Net Core 2.2 中实现了这样的身份验证:

public async Task<IActionResult> LoginAsync(string user, string password)
{
if (user == "admin" && password == "admin")
{
var claims = new[] { new Claim(ClaimTypes.Name, user),
new Claim(ClaimTypes.Role, "Admin") };

var identity = new ClaimsIdentity(claims, CookieAuthenticationDefaults.AuthenticationScheme);

await HttpContext.SignInAsync(
CookieAuthenticationDefaults.AuthenticationScheme,
new ClaimsPrincipal(identity));

return RedirectToAction("Index", "Home");
{
else
{
return RedirectToAction("Login", "Users");
}

我现在需要进行注销操作。我曾经在 Asp.Net MVC 中使用 FormsAuthentication.SignOut() 实现这一点......我需要知道在 Asp.Net Core 2.2 中执行此操作的正确方法

我尝试过的是进行这样的注销操作:
    public async Task<IActionResult> Logout()
{
await HttpContext.SignOutAsync();
return RedirectToAction("Index","Home");
}

并在我的导航栏中使用了以下代码:
@if (User.Identity.IsAuthenticated)
{
using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-right" }))
{
@Html.AntiForgeryToken()

<ul class="nav navbar-nav navbar-right">
<li>
@Html.ActionLink("Hello " + User.Identity.Name + "!", "Index", "Manage", routeValues: null, htmlAttributes: new { title = "Manage" })
</li>
<li class="nav-item">
<form class="form-inline" asp-area="Identity" asp-page="/Users/Logout" asp-route-returnUrl="@Url.Action("Index", "Home", new { area = "" })">
<button type="submit" class="nav-link btn btn-link text-dark">Logout</button>
</form>
</li>
</ul>
}
}
else
{
<ul class="nav navbar-nav navbar-right">
<li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>
<li>@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })</li>
</ul>
}

按照此 documentaion 的说明进行操作

这正确显示了注销按钮,但按下按钮似乎没有触发我的操作,并且用户没有注销。

最佳答案

原来我只是在我的 View 中犯了一个错误。我在表单中调用了错误的操作。

using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-right" }))



应该是, Html.BeginForm("Logout","Users", ...)
此外,我的表单正在发送一个 Post 请求,所以我的 Action 必须用 [HttpPost] 修饰,如下所示:
[HttpPost]
public async Task<IActionResult> Logout()
{
await HttpContext.SignOutAsync();
return RedirectToAction("Index","Home");
}

关于c# - 使用 Asp.Net Core Cookie 身份验证的注销操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56122416/

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