4

我对服务堆栈很陌生。我似乎在将 401 雕像改写为 302 时遇到了麻烦。我在看这个答案:

ServiceStack认证失败时,不重定向?

我看到建议的解决方案是添加以下内容:

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)
        });
    }
}

非常感谢

4

1 回答 1

3

你几乎在那里。

public override void Configure(Container container)
{
     Plugins.Add(new AuthFeature(() => new AuthUserSession(), new IAuthProvider[] { new BasicAuthProvider() }) { HtmlRedirect = null });

//... more config stuff...

}
于 2013-09-17T20:21:56.830 回答