0

I changed my app namespace and App Title within developer settings on facebook.

Now my website only appears blank. My application is in sandbox mode but I can make it public if someone needs to reproduce my issue using their facebook account.

These are the canvas urls I'm providing:

canvas url: http://books.botflip.com secure canvas url: https://books.botflip.com

sambehera
  • 959
  • 3
  • 13
  • 33

2 Answers2

0

I fixed it!

It was an xframe option issue due to using rails4. Also, rails 4 requires a post route in routes.rb to work well with facebook.

Cannot display my rails 4 app in iframe even if 'X-Frame-Options' is 'ALLOWALL'

thanks for helping everyone!

Community
  • 1
  • 1
sambehera
  • 959
  • 3
  • 13
  • 33
0

In your development.rb file:

config.action_dispatch.default_headers = {
  'X-Frame-Options' => 'ALLOWALL'
}
JesWang
  • 21
  • 2