Teja
Teja

Reputation: 341

facebook java integration

I followed http://developers.facebook.com/docs/authentication and got the access_token of a user. Now, I want to post some text/images onto his wall from a java application.

How can I use this access_token to publish onto user's wall?

I could not find any suitable documentation for desktop applications.

-- Thank you.

Upvotes: 0

Views: 1401

Answers (2)

sandeepsharat
sandeepsharat

Reputation: 97

Make sure that you have applied for the access token with the publish_stream permission.If so you can easily post images or messages or links to the users wall using restfb. There are a lot of sample codes available in the restFb website.

Upvotes: 0

Bozho
Bozho

Reputation: 597016

Take a look at restfb - a Java API for both the Graph API and the old rest API.

Upvotes: 2

Related Questions