Reputation: 11
I am displaying wall using graph api. I have queries about below problems.
I would like to give "Like" functionality for each news feed post via graph API. W would like to give "Comment" functionality for each news feed post via graph API.
Upvotes: 1
Views: 399
Reputation: 5435
You can do this with Graph Api
.Check Documentation.There it says
You can comment on or like any object that has a /comments or /likes connection by posting to https://graph.facebook.com/OBJECT_ID/comments and https://graph.facebook.com/OBJECT_ID/likes, respectively:
More details here.
Upvotes: 1