我有以下代码:
application_controller.rb
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :current_user
def facebook_cookies
@facebook_cookies ||= Koala::Facebook::OAuth.new.get_user_info_from_cookie(cookies).symbolize_keys!
end
def current_user
begin
# allow for ?access_token=[TOKEN] for iOS calls.
@access_token = params[:access_token] || facebook_cookies[:access_token]
@graph = Koala::Facebook::API.new(@access_token)
# TODO: move this to session[:current_user]..
@current_user ||= User.from_graph @graph.get_object('me', { fields: 'id,first_name,last_name,gender,birthday' })
rescue
nil # not logged in
end
end
def authenticate
redirect_to(root_url) if current_user.nil?
end
end
(我已经按照这里的描述设置了考拉https://github.com/arsduo/koala/wiki/Koala-on-Rails)
我真的不想介绍 OmniAuth,因为我想做的事情相当简单。上面的代码有效,问题是它为每个页面加载调用 Facebook = 不好。我猜我需要存储session[:user_id]
,然后User.find(session[:user_id])
在用户通过身份验证后调用每个后续请求?
任何人都可以提出解决这个问题的最有效方法,这样我就不用在每个页面加载时等待 Facebook 了?