Reputation: 2018
I've created a FB application, hosted on Heroku. The app is written in Ruby.
app.facebook.com/app_namespace
, an empty screen is shown. When I have enabled exception trace, it now shows as if the access_token for graph koala object is nil.Already tried:
Upvotes: 1
Views: 242
Reputation: 79743
By default Sinatra uses rack-protection to set the X-Frame_Options
header. It looks like this is what is causing your problems.
You can disable it with this line in your application:
set :protection, :except => :frame_options
Upvotes: 2