I am trying to create a Facebook api for Java. Can any body suggest the code for logging a user and redirecting into my application? I am trying for past two days.
|
|
closed as not a real question by Andrew Barber♦ Apr 2 at 16:14
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.
|
There are already enough facebook API clients. Like restfb and spring-social-facebook which I'm using. |
||||
|
|
I will be biased here and say, use JOAuth 1.2.1 (not version 2 Draft, as yet): The SO question I answered, fully explains how you can achieve this |
|||
|
|
|
I'd look into Spring Social, especially if you're already a Spring user. |
|||
|
|
|
The Temboo Java SDK simplifies the process of authenticating a user via Facebook and redirecting them to your application. This is done by breaking the OAuth process down into two simple steps - initialize and finalize. see here for details: https://www.temboo.com/library/Library/Facebook/OAuth/ There's a working example, including source code, of Facebook login using this method at the link below: https://www.temboo.com/examples (Full disclosure: I work at Temboo) |
|||
|
|

