Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My Rails canvas app is hosted at "http://myapp.herokuapp.com" (or 'heroku_host' rom now on) while its facebook url is "http://apps.facebook.com/myapp/" (or '*facebook_host*' from now on).

Given that:

  • I want my app to work and be accessible only through facebook;
  • Facebook redirects every request like 'facebook_host/xxx' to 'heroku_host/xxx';
  • when I post to the facebook Graph a user action it should link to "facebook_host/object_path" in the place of "heroku_host/object_path" (where "object_path" is more like "objects/:object_id")

I guess I need to change the app default behavior so that every path and every url generated with Rails helpers will point to facebook_host/path in the place of heroku_host/path;

Is my guess correct? If so, how can I do it? If not, how can I achieve the desired behavior?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.