0

好的,我一直在尝试研究如何使我的网站能够在 facebook 画布应用程序中工作,因为它只是显示为空白。我发现这个网站 tut 似乎对它为什么不起作用有所了解:这里和这里是git

我不知道如何从我的网站调用它,我已将文档上传到服务器,但我该如何使用它?我只能做 PHP,一点 mySQL,html 和 jquery 等......我的知识并没有跨越这么多。

任何建议将不胜感激这是我需要在我的服务器上运行的代码:

class FacebookClubsController < ApplicationController
  layout "facebook_canvas"

  after_filter :allow_iframe

  def index
  end

  private

  def allow_iframe
    response.headers["X-Frame-Options"] = "GOFORIT"
  end
end
4

1 回答 1

0

我遵循了本教程: https ://coderwall.com/p/bsfitw

然后我放:

  after_filter :allow_iframe

在我所有控制器类的第一行

和:

  private
  def allow_iframe
  response.headers["X-Frame-Options"] = "GOFORIT"
  end

在底部。

我还向“/”添加了一条发布路线

#config/routes.rb
  post '/', to: 'mycontroller#mymethod'

来源: https ://coderwall.com/p/toddiq

于 2014-01-14T01:15:54.867 回答