-4

I wanted to make a facebook application in java using servlets and JSP.But as i found out facebook does not provide any SDK for java.And i do not wish to use the third party APIs like restfb etc.Does facebook exposes its APIs through webservices which i can use using java? Also can GRAPH API be regarded as a webservice?

arpitsolanki
  • 73
  • 3
  • 10
  • 1
    I don't think you did much research. Graph API appears to be, for all intents and purposes, a web service. Did you even look at it? http://developers.facebook.com/docs/reference/api/ – AHungerArtist May 23 '12 at 13:18

2 Answers2

2

Facebook has exposed it services through RESTfull webservices. Have a look at facebook graph api and FQL.

Yes you are correct in saying facebook doesnot have a JAVA SDK. But you can always use third party libraries. Using a library is not a compulsion as you can make the calls directly.

Good Luck.

Subir Kumar Sao
  • 8,171
  • 3
  • 26
  • 47
0

While Facebook does not provide an official API, there are some ways you can connect to FB from Java. For example, check this SO question.

Community
  • 1
  • 1
vz0
  • 32,345
  • 7
  • 44
  • 77