up vote 1 down vote favorite
share [g+] share [fb]

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!

I'm new, does any one have an experience on that?

link|improve this question

77% accept rate
There are plenty of Facebook developers on Stackoverflow (including me), but there is no question here for us to answer. – Oddthinking Nov 23 '08 at 11:17
feedback

closed as off topic by Will Apr 27 '11 at 14:53

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

I don't really see a question. Surely a lot developers created such an application (see all the available apps in facebook).

I personally tried it once. And yes, you need a place to publish your aplication (webserver)...

Some help to start: http://developers.facebook.com/get_started.php?tab=tutorial

link|improve this answer
Is there Open Source Samples? – Omar Abid Nov 23 '08 at 9:05
Thanks for the link :) – Omar Abid Nov 28 '08 at 15:34
feedback

You don't have to host your application. Here's a company that will host your Facebook application for free for one year.

link|improve this answer
what about licencing? Some time those companies owns your application when they grow :( – Omar Abid Nov 28 '08 at 15:34
feedback

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 (http://app.facebook.com/yourAppName/) 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.

There are a bunch of prewritten libraries for Facebook too, for several languages. For example, Facebooker for Ruby.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.