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?
I wanted to make a facebook application in java using servlets and JSP.But as
Share
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.