是否可以使用OmniAuth在某些操作之前要求
登录?
我记得有一个轨道广播说Devise有一个before_filter,但是OmniAuth呢?
你可以
添加一个before_filter:
class ApplicationController < ActionController::Base
before_filter :authenticate
def authenticate
redirect_to :login unless User.find_by_provider_and_uid(auth["provider"],auth["uid"])
end
...
end
假设:
1.您已经定义了一个包含以下链接的登录页面:<%= link_to“使用Facebook登录”,“/ auth / facebook”%>
另见RailsCasts tagged with authentication
原文链接:https://www.f2er.com/ruby/264669.html