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 have researched in the doc but i could not find out anything.

I want user to comment others' photo and like their photo. How can i do this?
I am using php-sdk also graph api.

share|improve this question

closed as not a real question by George Stocker Jul 15 '12 at 1:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

Have you tried going through the photo object document?
Comments:

You can write to the PHOTO_ID/comments connection to post a comment to the photo by issuing an HTTP POST request with the publish_stream permission and following parameters.

Likes:

You can like a photo by issuing a HTTP POST request to PHOTO_ID/likes connection with the publish_stream permission. No parameters necessary.

share|improve this answer
Thank you ifaour – ccking Jul 14 '12 at 11:52

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