Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best open source Java library to incorporate Facebook functionality into a Java web app? [closed]

What's the best open source Java library to add Facebook functionality to a Java web app?

like image 318
Hula Avatar asked Apr 17 '09 06:04

Hula


3 Answers

For the simplest and most updated API, I'm liking RestFB so far.

http://restfb.com/

like image 144
pschang Avatar answered Nov 07 '22 07:11

pschang


Since facebook stopped supporting a Java API, the mantle of trying to provide one has been taken up by a google coding group:

http://code.google.com/p/facebook-java-api/

The API is provided under the MIT License.

like image 7
Chris Clarke Avatar answered Nov 07 '22 06:11

Chris Clarke


This is by far the most advanced option if your technical chops are up to it:

http://code.google.com/p/batchfb/

It will automatically batch multiple requests so you don't have to think about it. BatchFB will even execute them in parallel if you overflow the maximum batch size and you're on a platform that supports asynchronous fetching (like App Engine).

like image 2
stickfigure Avatar answered Nov 07 '22 06:11

stickfigure