我正在使用Owin,Katana和Nancy来托管一个带有身份验证所需部分的简单网站。 注意我也在使用nuget包 - Nancy.MSOwinSecurity
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = Constants.AuthenticationType,
LoginPath = new PathString("/Login"),
});
app.UseNancy();
这是我的模块代码
public class LoginModule : NancyModule
{
public LoginModule()
{
Post["login"] = p =>
{
var name = Request.Form.name;
var auth = Context.GetAuthenticationManager();
var claims = new List<Claim> {new Claim(ClaimTypes.Name, name)};
var id = new ClaimsIdentity(claims, Constants.AuthenticationType);
auth.SignIn(id);
// redirect how????
return View["index"];
};
}
}
我的提交表单
<form name="login" action="/login" method="post" accept-charset="utf-8">
<ul>
...
</ul>
</form>
现在我想在成功登录ReturnUrl后重定向 -
e.g。登录?RETURNURL =%2Fblah%2blahblah
似乎没有像表单身份验证那样的重定向方法,而且查询字符串参数属性为空。
答案 0 :(得分:4)
您是否在Response.AsRedirect("/");
GetRedirect("/");
或NancyContext
使用您的代码示例:
public class LoginModule : NancyModule
{
public LoginModule()
{
Post["login"] = p =>
{
var name = Request.Form.name;
var auth = Context.GetAuthenticationManager();
var claims = new List<Claim> {new Claim(ClaimTypes.Name, name)};
var id = new ClaimsIdentity(claims, Constants.AuthenticationType);
auth.SignIn(id);
return Response.AsRedirect(p.Request.Query.RedirectUrl);
};
}
}