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.

I know there is a way to integrate Java into web pages so your actual inner workings of your app is Java but accessed though a webpage. Is there a way to do that in Facebook? Or does it have to be script based?

Or is it the same exact way as putting a Java app onto a webpage since Facebook is just a webpage?

share|improve this question

closed as not a real question by Igy, bmargulies, Andrew, Favonius, Black Frog Sep 1 '12 at 17:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You could write a Java Applet and embed it into a webpage, but as you suspected the Facebook API is for webapps. There are many frameworks you can build webapps with and you can do that with alot of programming languages including Java.

share|improve this answer
Could create as applet but use the main(String []) as an application( use a constructor too). – huseyin tugrul buyukisik Sep 1 '12 at 0:03
Yea thats true also actually. You could create a normal application that makes calls to facebook with an embedded http client. But i think he wants a webapp, like a facebook game or something like that. – fonZ Sep 1 '12 at 1:44

Not being a Facebook expert, i know that Facebook offers interfaces to integrate Facebook functionality into your webpage, whatever technical means you use to render your webpage.

For applications that run inside of Facebook, they state in their docs

Apps on Facebook are web apps that are loaded in the context of Facebook in what we refer to as a Canvas Page. You can build your app using any language or tool chain that supports web programming, such as PHP, Python, Java or C#.

So the answer would be: Yes, you can deploy Java applications to Facebook. You would have to set up your application and provide an URL to Facebook, from which it can be accessed.

They have a tutorial that gives PHP examples.

share|improve this answer

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