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.

Servlet is a Java application programming interface (API) running on the server machine which can intercept on the requests made by the client and can generate/send a response accordingly.

learn more… | top users | synonyms (4)

1
vote
1answer
46 views

Are facebook App ID and App Secret specific for every user that uses facebook connect

Hi all i have a problem with facebook connect, i'm using these API to make users login to my web application using their facebook account, as a previous step i get an App ID and APP Secret from ...
0
votes
1answer
160 views

How use SocialAuth with JSF to redirect?

I'm trying to use SocialAuth, the idea is very simple, click in log in with facebook then redirect the user to my website signed in. The log in part I get it, which is below : 1) /index.xhtml ...
1
vote
1answer
70 views

Deploy Servlet to Tomcat hosing

I create Facebook JSP Application. I use Restful Java Client Web Services. And created .java file. in this file have Servlet. but can not deploy it into the hosting. I deployed follow WEB-INF ...
0
votes
0answers
60 views

Getting facebook api parameter in java servlet

I have a page with this link: <a href="https://www.facebook.com/dialog/oauth? client_id=[my id] &redirect_uri=http://www.my.servlet.com &scope=email,user_checkins,read_stream ...
1
vote
1answer
257 views

OAuthException: Error validating verification code

I have created two servlets named s1 and s2. s1 forwards requests to https://graph.facebook.com/oauth/authorize?client_id=41050677*****&redirect_uri=http://localhost:8080/fb10/s2& ...
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
1answer
348 views

Get the complete url in managed bean JSF Spring

Hi I am doing facebook login feature in my application. Now problem is that, when I logged in from facebook account, I am redirected to my specified redirected url with access token. I need to grab ...
0
votes
1answer
241 views

How to make API calls with App Access Token for retrieving relationship_status

I am working on a application development which is getting real updates from facebook, and I need to make API calls after getting a change notification. I am able to make API Calls using User Access ...
-1
votes
2answers
915 views

how to parse users facebook friend list using java? [closed]

I am making a facebook app .I am able to fetch a user's friend list using the graph api.The friend list is returned in the form of JSON.How to parse it is using java?I have the json simple library but ...
0
votes
1answer
915 views

Posting to a user's wall using the POST request and graph API

I am new to facebook app development and i have been trying to post a simple message on the wall of the user.i have managed to get the access token .Here is the code for the POST request.I am using ...
0
votes
1answer
268 views

SocialAuth java library not working as expected (using NetBeans)

I'm trying to run the socialauth spring sample (http://code.google.com/p/socialauth/wiki/SpringSample) but when I'm trying to connect with facebook the socialAuthTemplate.getSocialAuthManager() call ...
2
votes
1answer
142 views

Combining a one-time “provisioning” process with JSF?

Let me preface this by admitting that this is my first webapp and first experience with JSF, so I've probably made some poor design decisions. Here's what I'm trying to do: I have a webapp using JSF ...
6
votes
2answers
1k views

Facebook authentication to my server using Android

I'm building an application with the following blocks: Android - Client Side, Java Servlets - Sever Side, Facebook app - used in order to authenicate users and work with their data. My Problem is ...
2
votes
1answer
156 views

Handling a lot of data in Java servlet

what I am trying to do is reading the latest statuses from all my facebook friends using graph api ,it takes too long , I am getting all my friends for facebook as json and I read the latest statuses ...
-3
votes
2answers
1k views

Where are Facebook api key and secret key? [closed]

How should I get Facebook API key and secret key? What are the steps involved to get them? Do I have to use FB API from my Servlet. How exactly can I use this and what can I retrieve?
0
votes
1answer
488 views

Session affinity not maintained with HTTP requests from IFrame in a canvas Facebook application

I am migrating a Facebook canvas application from FBML to iframe based. The Facebook client class that is used to communicate with Facebook APIs is placed in the HTTP session for the first time user ...
0
votes
1answer
556 views

Facebook Authentication: HttpServletResponse.sendRedirect(URL) different to typing the URL directly into browser?

I am trying to redirect my users to the Permission Request page of Facebook, by redirecting them to ...
0
votes
2answers
455 views

Posting on facebook wall with offline permission without browser

I'm developing a facebook application that post on the user wall with offline permission guaranteed. I'm using PHP with the facebook api (this code is in "index.php"): $user = $_GET['user']; ...
-1
votes
1answer
2k views

Fetching facebook friends by using facebook java api

My task is something like this:- 1) Make a sucessful login from my app and retrive the name of friends of user 2)Display all friends on a web page(html) , each friend have a correspoing ...
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 ...
0
votes
2answers
310 views

How do I access a redirected url from my java servlet?

Hey guys, I've started doing some work on servlets, and I need to implement a facebook login for one of my projects. I created a dummy app on facebook, and I am using restfb for this. First I redirect ...
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 ...
0
votes
1answer
1k views

facebook-java-api: fql_query returns null

Hiya. I'm trying to fetch logged-in first name using fql_query. i tried the following code: import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import ...
0
votes
1answer
781 views

Redirecting Facebook 'offline_access' permission page

I am trying to get users' permission for 'offline_access' in an iFrame Facebook application coded with the Facebook Java API. I understand that I need to obtain an 'indefinite session key' after the ...