我正在使用图形 api 和 koala gem 来检索用户和omniauth 的页面:facebook gem 来检索用户的令牌并将其存储在 session[:token]
如果我使用 get_object(page_name) 访问页面,它会显示与页面相关的所有数据,但是当我尝试使用 get_connections() 获取页面时,它返回 null(0)。
def current_graph
@current_graph ||= Koala::Facebook::API.new(session[:token])
end
pages = current_graph.get_connections('me', "accounts")