views:

119

answers:

0

i am developing a facebook application with rails and the facebooker plugin from my local machine and have problems to set it up.

here is my facebooker.yml file

development:
  api_key: myAPIKey
  secret_key: mySecretKey
  canvas_page_name: http://apps.facebook.com/rafikbennacer/
  callback_url:  http://207.172.82.237:3000
  pretty_errors: true
  set_asset_host_to_callback_url: true
  tunnel:
    public_host_username:
    public_host:
    public_port: 4007
    local_port: 3000
    server_alive_interval: 0

I got my Callback URL accessible from the outside by doing a port forwarding on my router.Iam using Montgrel server with the command line ./script/server -b 192.168.0.11 -p 3000. everything seems to work but i still have this message error when i go to http://apps.facebook.com/rafikbennacer/:

Errors while loading page from application Received HTTP error code 404 while loading http://207.172.82.237:3000/ Please try again later. We appreciate your patience as the developers of test1 and Facebook resolve this issue. Thanks!

where am i wrong in my configuration , how can i trouble shoot this error? thank you