API認証にはdeviseを使用しています。私はこのようなメソッドを上書きSessionController:create
しました:
class Users::SessionsController < Devise::SessionsController
def create
resource = warden.authenticate!(:scope => resource_name, :recall => "#{controller_path}#new")
set_flash_message(:notice, :signed_in) if is_navigational_format?
val = sign_in(resource_name, resource)
current_user.reset_authentication_token!
respond_to do |format|
format.html do
respond_with resource, :location => redirect_location(resource_name, resource)
end
format.json do
render :json => { :status => OK_OK, :auth_token => current_user.authentication_token }.to_json, :status => :ok
end
end
end
end
ご覧のとおり、JSONで認証する場合はステータスコードで応答します。認証に失敗すると、次の応答が返されます。
{"error":"Invalid email or password."}
このメッセージを変更するにはどうすればよいですか?warden.authenticate!
このメソッドをどこで上書きするかわかりません。