0

在用户授权后 Facebook iframe 应用程序被重定向到画布之外的另一篇文章中提出了这个问题,但是,我遇到了同样的问题,不明白如何实施帖子中描述的修复。如果他们发布了固定控制器,那就太棒了。这是我的控制器。

class AppController < ApplicationController

def index
@oauth = Koala::Facebook::OAuth.new("APP_ID", "APP_SECRET", "https://quiet-mist-8418.heroku.com/app/redirect" )
  if (session[:access_token].blank?)
    redirect_to @oauth.url_for_oauth_code and return
  end

  @graph = Koala::Facebook::API.new(session[:access_token])
  @friends = @graph.get_connections("me", "friends").to_s
end

def redirect
  @oauth = Koala::Facebook::OAuth.new("APP_ID", "APP_SECRET", "https://quiet-mist-8418.heroku.com/app/redirect" )
  session[:access_token] = @oauth.get_access_token(params[:code]) if params[:code]
  redirect_to(:action=>"index")
end

end
4

1 回答 1

1

有趣的是,我去了我的 Facebook 开发者应用程序的设置页面,并对设置 > 身份验证对话部分进行了一些更改,它似乎按预期工作。我检查了标记为“身份验证推荐”的部分。现在,它在授权后停留在页面上。

于 2011-12-16T14:58:12.160 回答