0

I want to access Facebook throught Java Native and post my wall.

But I see it on Facebook API does not allow access to native Java for this area.

(https://developers.facebook.com/docs/) This is Facebook's API Docs.

Really, I'm on Facebook that can be accessed through the Java native method?

Jinwoo Kim
  • 93
  • 1
  • 9
  • A quick [Google](https://www.google.com.au/search?q=java%20facebook%20API&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a) suggests that it should be possible – MadProgrammer Feb 04 '13 at 05:13
  • Two clicks away from your link: https://developers.facebook.com/tools/third-party-sdks/ – Andreas Dolk Feb 04 '13 at 05:22

1 Answers1

0

Facebook API generally, and the Graph API in particular, are simple JSON/REST api based on HTTP protocol.

So you have more options, for example:

  1. Call directly the API using the java.net.URL object
  2. Use a java client REST library like Jersey Client

Look at this post for detailed example about Jersey.

Community
  • 1
  • 1
dash1e
  • 7,677
  • 1
  • 30
  • 35