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 am new to RestFB I am planning to use it in my JSF application to develop 'login with facebook' functionality.

Going through it`s tutorials and sample it looks like it is meant for fetching content from Facebook. Can we use RestFB for 'login with facebook'? Any samples would really help.

share|improve this question

closed as not a real question by BalusC, Ricardo Lohmann, François Wahl, LittleBobbyTables, Jeff Yates Dec 4 '12 at 19:40

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.

3 Answers

The FB Rest protocol has been deprecated. You should not be developing a new application using this.

See the Authentication pages of the documentation for the current ways to log in with Facebook.

share|improve this answer
Yes I know but 'restfb'(restfb.com) is opensource libraries which can be used for this purpose is what I heard. – Abhishek Sep 5 '12 at 4:54

I am new to RestFB as well. From what I've read, you need to have an access token to do anything with RestFB. I have not seen a way to actually get the access token with RestFB. There is a decent guide on how to do this on the Facebook developer page though.

Facebook Authentication

share|improve this answer

Not sure if this is still active. I have used scribe and socialsecure in the past with Java (scribe more recently). Scribe setup involved following steps 1-3 on the tutorial and redirecting the user to the authorization URL. Once authorized, the callback specified will get invoked - you will need to parse the code (access token) in the URL. Once you have the code, you can follow steps 4 & 5 to complete authorization.

https://github.com/fernandezpablo85/scribe-java/wiki/getting-started

Once authenticated, you can use the same access token with restfb for further calls.

share|improve this answer

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