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.

Java Enterprise Edition (Java EE) is a specification defining a collection of Java-based technologies and how they interoperate. Java EE specifies server and client architectures and uses profiles to define technology sets targeted at specific classes of applications.

learn more… | top users | synonyms (3)

1
vote
2answers
74 views

Login using DB and Social website

I have a carpool website where users can log in through my DB and everything is working fine. Once logged in, users can post advertisements for carpooling. Now my need is for users to log in through ...
0
votes
2answers
68 views

Deploying application in GAE

I am new to Google App Engine. I have a problem in deploying an application that previously worked in glassfish server. This application uses Facebook's javascript sdk and Java servlets and jsp's. ...
0
votes
0answers
134 views

facebook conversion tracking code in multiple head tag of a jsp page?

Basically we are using struts tiles in our spring social based Facebook application. We would like to track the conversion of our app joins so we've decided to use Facebook conversion tracking ...
0
votes
0answers
98 views

how to pass servlet generated image to FB.api imgURL function?

my code is here var imgURL="http://localhost:8084/WebApplication6/imagefromservlet"; FB.api('/me/photos', 'post', { message:' coffee', url:imgURL }, function(response){ ...
2
votes
1answer
300 views

Java code for posting pictures to fan page wall

I made a facebook application from here developers.facebook.com/apps Called "Jobs Factory Egypt" I made a java application that posts pictures through the above application using my access token It ...
1
vote
1answer
82 views

How to make url mappings like facebook do for all of its users and pages

I was just wondering, in java when we need to have something like www.mydomain.com/buy then I would make a servlet and map it to buy and add it to deployment descriptor. So for every such link I would ...
0
votes
0answers
303 views

Facebook JS SDK login with JAVA session handling

Let me come straight to the problem.. I am using the Facebook JS SDK to get the user to login to my website : var fbAccessToken; window.fbAsyncInit = function() { FB.init({ appId : ...
0
votes
1answer
1k views

Facebook integration with javascript FB Graph api Post on wall Unknown error in firefox

I am posting on the user`s wall using the FB Graph api my function to post on wall is as follow: function PostToWall() { var mymessage = 'my message'; var mypic = 'http://myapp/a.jpg'; ...
0
votes
1answer
233 views

Not able to get my page's fan's information

I am doing a POC, I created a Facebook Apps and under that i created a Page, I need to access the information(favourite team,players, books, interests) of user's who have given like's to the page, ...
0
votes
1answer
115 views

Face book like button sample code for multicounty site

We are having three different site hosted with three different domain (.us ,.ch and .ca) . User can access the site through a single common url and based on user geoip request routed corresponding ...
0
votes
1answer
135 views

Getting Name of Facebook page on which App is installed in JSP/Javascript

I want to get Name of Facebook page on which my FB App is installed.The app is built in JSP & it is rendered in an Iframe on canvas page. I have gone through a similar question asked here but ...
3
votes
2answers
2k views

How to provide facebook, twitter, linkedin and live login using SpringSecurity?

My question is related to following Stackoverflow questions already present here... I am asking this question just to be more specific and get the latest suggestions, excuse me if you find it a ...
0
votes
1answer
1k views

Facebook login using java-facebook-api

I am struggling from couple of days, to add facebook login to web app using java facebook api, since my web application is java/j2ee application. I went through few blogs, since facebook doesnt have ...
0
votes
1answer
154 views

HttpUtil, logger.debug

I am implementing facebook connect for my web application using facebook-java-api. I am actually following a tutorial from this site I have written a servlet to implement step 4 which is given in ...
2
votes
1answer
554 views

Facebook App via Java Applet

new to FB development. I have a headless JEE app running on one of my GlassFish servers, and some time ago I wrote up a Swing applet for its front-end. Now I want to make a FB app that uses the same ...
2
votes
1answer
2k views

How to use Facebooks Graph-API from a Servlet

I need to access Facebook from a J2EE-App (serverside). I first had a look at this project: http://code.google.com/p/facebook-java-api/ , but as I need to create Facebook-Events and invite people this ...