我尝试使用Devise来验证服务器端API。在我的控制器中,我直接使用Devise wiki中的代码来了解如何使用HTTP Basic auth ...
before_filter :check_auth, only: [:show]
和
def check_auth
authenticate_or_request_with_http_basic do |username,password|
resource = User.find_by_email(username)
if resource.valid_password?(password)
sign_in :user, resource
end
end
end
当我转到目标网址时,我预计会出现401 Unauthorized JSON错误,但是我收到以下错误:
undefined method `authenticate_or_request_with_http_basic' for #<V1::ItemsController:0x007fb6b3d79120>
我不明白为什么不定义这种方法。我使用RubyMine并且IDE直接链接到该方法的代码,但由于某种原因出了问题。任何人都可以帮我弄清楚我做错了什么吗?
更新:我能够识别我的问题。我使用Rails-API与完整的Rails,因此HttpAuthentication的模块(令人惊讶地)不包括在内。
添加:
include ActionController::HttpAuthentication::Basic::ControllerMethods
到我的ApplicationController,它现在按预期工作。
答案 0 :(得分:11)
这是因为Rails API是基础Rails库的子集,并且默认情况下不包括处理authenticate_with_http_basic方法的模块。您需要在application_controller.rb中包含这些模块。
应用/控制器/ application_controller.rb 强>
include ActionController::HttpAuthentication::Basic::ControllerMethods
include ActionController::HttpAuthentication::Token::ControllerMethods