3

我找到了这篇文章,但它是针对 Play 2.0 的。

有没有人为 Play 1 做过这个(我使用的是 1.2.4-mbknor-3)?

4

1 回答 1

6

Http.Request对象具有从 Authorization 标头填充的属性userpassword你可以这样做:

public class Application extends Controller {   
  private static final String WWW_AUTHENTICATE = "WWW-Authenticate";
  private static final String REALM = "Basic realm=\"Your Realm Here\"";

  @Before
  static void authenticate() {
    if (!("username".equals(request.user) && "password".equals(request.password))) {
      response.setHeader(WWW_AUTHENTICATE, REALM);
      error(401, "Unauthorized");
    }
  }

  public static void index() {
    renderText("Welcome!");
  }
}
于 2013-01-16T13:37:40.953 回答