rails BASIC認証
0pt
authenticate_or_request_with_http_basicを使う。
すごく簡単だった。
app/controllers/application_controller.rb
class ApplicationController < ActionController::Base
before_filter :authenticate
private
def authenticate
authenticate_or_request_with_http_basic do |username, password|
username == 'ユーザー名' && password == 'パスワード'
end
end
end
コメントはまだありません