在rails响应中设置WWW-Authenticate标头的正确方法是什么?

时间:2011-12-18 08:54:44

标签: ruby-on-rails

在rails响应中设置WWW-Authenticate标头的正确方法是什么?

目前我这样做:

    headers["WWW-Authenticate"] = %(Basic realm="My Realm")
    render :json => {:message =>I18n.t("errors.messages.authorization_error")}, :status => :unauthorized

我认为使用rails api设置此标头有一种更简单的方法。不直接访问标题字典。

1 个答案:

答案 0 :(得分:2)

您正在做的事情没有任何问题,但是rails确实已经启用了HTTP身份验证。请参阅此链接:http://apidock.com/rails/ActionController/HttpAuthentication/Basic/ControllerMethods/authenticate_or_request_with_http_basic