I am starting my first Facebook app, hosted on Heroku. I have set up an app on Heroku for production and a separate app running locally on my own machine for development. Currently, the app (which has very little functionality) runs on localhost just fine. But I don't understand if the app should be able to run like a typical canvas app on the localhost with Facebook functionality. For example, will the Requests Dialog run in a canvas app locally. Should I be able to use that functionality locally as I develop? If so, what steps do I need to take to get that working?
|
|
Your app should behave the same way whether it is on localhost or on the final production server. Facebook dialogs (requests, messages..) should display on your local (dev) machine as they do on the live server. In my case to make this work I setup a secondary "facebook app" with different values for This allows you to run your app from localhost. If you app is canvas-only it will run inside an iframe (which points to Also, make sure you're including Facebook's JS API if you want to see any of the Facebook modal boxes rather than pop-up windows. The only difference you should notice is that if you share a page from your localhost dev site via the FB API, Facebook won't be able to crawl your site and get any icon, image or description should it need to. |
|||
|
|
The differences App dialog will still work, but in popup instead of directly on the page. Plus, you'll be able to login user like you would if you set your local dev URL (eg There's also some stuff you won't be able to test on the server like realtime update where facebook send a request to your site to notify an update. There may be some other things, but this is what I can think about right now. Working locally For login methods, I tend to rely only on the JS SDK as most of server side login through a canvas app will rely on the Then, I only setup two FB app, one staging and one for release. The staging app point to my locals urls so my Facebook will allow connection from it. At this point, it should mostly work fine out of the box! |
|||
|
|