Is there an updated Java SDK for Java?

I can not find one that has been recently updated. If not, is there a good Java library to do the necessary signature verification, base64 decoding, etc., needed to interact with the Facebook API?

UPDATE . I use Spring Social Facebook to help with Facebook. It does not process everything and is not perfect, but the best library for Java. We look forward to the progress made with Spring. I asked a couple of questions on my forum, and the answers were informative and super fast.

+7
source share
5 answers

You can check the official version of the Android SDK for Android written in Java:
https://github.com/facebook/facebook-android-sdk

all the basic things, like checking, decoding, etc., are, maybe, Android-related stuff - this is not what you need, but I think it is pretty trivial to extract it from there.

hope this helps

+3
source

I just started using RestFB . I looked at Spring at first, but it looks like RestFB has a softer learning curve. I will update if this works for me.

+5
source

I think the semi-official Java SDK is spring social:

http://www.springsource.org/spring-social

but I wrote a Java shell for the REST GRAPH API for Facebook (http calls the api chart and translations from json objects to java classes ..)

You can check it here:

https://github.com/itzikrou/fishbowl

hope this is helpful.

+2
source

https://github.com/roundrop/facebook4j looks pretty good, but hasn't used it yet.

For example, the search API looks simple:

ResponseList<User> results = facebook.searchUsers("mark"); ResponseList<Post> results = facebook.searchPosts("watermelon"); 
0
source

Go to developers.facebook.com, there you will get all the APIs released on facebook .. also a guide to using them ...

-3
source

All Articles