ruby-on-rails – OmniAuth before_filter,用于要求登录

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – OmniAuth before_filter,用于要求登录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用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

猜你在找的Ruby相关文章