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?
