我对服务堆栈很陌生。我似乎在将 401 雕像改写为 302 时遇到了麻烦。我在看这个答案:
我看到建议的解决方案是添加以下内容:
Plugins.Add(new AuthFeature(...) { HtmlRedirect = null });
我的问题是,我究竟应该在哪里添加它才能让它工作?我已经开始根据 github 上的示例构建一些东西:
public class AppHost : AppHostBase
{
public AppHost() : base("Custom Authentication Example", typeof(AppHost).Assembly) { }
public override void Configure(Container container)
{
// register storage for user sessions
container.Register<ICacheClient>(new MemoryCacheClient());
// add routes
Routes.Add<HelloRequest>("/hello");
// Register AuthFeature with custom user session and custom auth provider
Plugins.Add(new AuthFeature(
() => new CustomUserSession(),
new[] { new CustomCredentialsAuthProvider() }
));
// Enable the metadata page
SetConfig(new EndpointHostConfig {
EnableFeatures = Feature.All.Add(Feature.Metadata)
});
}
}
非常感谢