Hosting a Facebook Application? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:04:56Z http://stackoverflow.com/feeds/question/312311 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312311/hosting-a-facebook-application 0 Hosting a Facebook Application? Omar Abid 2008-11-23T09:02:01Z 2008-11-23T13:15:11Z <p>I have looked on FaceBook Developer page and found that it's possible to create a FaceBook application, however this application must be hosted by you!</p> <p>I'm new, does any one have an experience on that?</p> http://stackoverflow.com/questions/312311/hosting-a-facebook-application/312313#312313 4 Answer by Gregor for Hosting a Facebook Application? Gregor 2008-11-23T09:04:28Z 2008-11-23T09:04:28Z <p>I don't really see a question. Surely a lot developers created such an application (see all the available apps in facebook).</p> <p>I personally tried it once. And yes, you need a place to publish your aplication (webserver)...</p> <p>Some help to start: <a href="http://developers.facebook.com/get_started.php?tab=tutorial" rel="nofollow">http://developers.facebook.com/get_started.php?tab=tutorial</a></p> http://stackoverflow.com/questions/312311/hosting-a-facebook-application/312462#312462 3 Answer by namin for Hosting a Facebook Application? namin 2008-11-23T12:33:01Z 2008-11-23T12:33:01Z <p>You don't have to host your application. <a href="http://joyent.com/developers/facebook" rel="nofollow">Here's a company that will host your Facebook application for free for one year.</a></p> http://stackoverflow.com/questions/312311/hosting-a-facebook-application/312497#312497 2 Answer by rally25rs for Hosting a Facebook Application? rally25rs 2008-11-23T13:15:11Z 2008-11-23T13:15:11Z <p>Yes, you have to have a server external to Facebook. Basically what happens is you give facebook the URL to your application. When someone tries to view it from facebook (<a href="http://app.facebook.com/yourAppName/" rel="nofollow">http://app.facebook.com/yourAppName/</a>) it will forward the request, along with some special keys for validation, to your application's server. All your code is on your hosting server, and from there is can make calls back to facebook's API/web services to get any needed data. Then you can return any UI/HTML/FBML markup in the reply, and facebook will display it.</p> <p>There are a bunch of prewritten libraries for Facebook too, for several languages. For example, <a href="http://facebooker.rubyforge.org/" rel="nofollow">Facebooker</a> for Ruby.</p>