Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am newbie to java and restfb. I am trying to like, unlike and comment on a user and a page post, But cannot find much information in the docs of restfb. Can any1 help me with this. I am done with all the oauth process and can even pull the post. Thanks

share|improve this question

1 Answer

Like a post:

DefaultFacebookClient client = new DefaultFacebookClient(access_token);
client.publish(post.getId()+"/likes", Boolean.class); 

Unlike a post:

DefaultFacebookClient client = new DefaultFacebookClient(access_token);
post.getLikes();
// retrieve a specific like, then
client.delete(like);

Comment on a post:

DefaultFacebookClient client = new DefaultFacebookClient(access_token);
client.publish(post.getId()+"/comments", String.class, Parameter.with("message", "Your comment here"));
share|improve this answer
Thanks a lot for the reply. Can u tell me something about unline and comment. – Warlock Jun 15 '12 at 13:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.