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.

In the Facebook API (REST), how do you like a photo? There's a stream.addLike function, but you need the post_id, and I don't see a way to get the post_id of a photo (not the same as the pid or the object_id).

share|improve this question
Impossible without a partnership with facebook – QuinnBaetz Jun 22 '11 at 6:57

2 Answers

You can now like a photo using Graph API, via a POST to the likes connection on a photo. This did not work previously work but it does now (2011/09/16). Not sure exactly when it got fixed but this one was an oversight for a very long after Graph API was introduced.

share|improve this answer

I think that the actual photo is classes as the same type of entity os a wallpost, so asloon as you can aquire the stream_id for the photo, it the comments that are attached to the photo you can set stream.addLink found http://developers.facebook.com/docs/reference/rest/stream.addLike Here

By getting the post_id via the photos.get method you should be able to set a comment adn like the object via the stream.addLike.

Hope this helps you.

share|improve this answer
You can't get the post_id from photos.get which is the whole problem, you can only attain the object_id and pid. And I don't see a way to go from those to post_id. – QuinnBaetz Jun 9 '10 at 16:48
Have you tried a cross table join using FQL Like so: SELECT pid, aid, owner, src, src_big, src_small, link, caption, created FROM photo WHERE pid IN (SELECT pid FROM photo_tag WHERE subject=<uid>) AND aid=<aid> AND pid IN (pid) – RobertPitt Jun 10 '10 at 15:54
That doesn't get the post_id. I found out that this is impossible unless you have a partnership with facebook :D – QuinnBaetz Jun 11 '10 at 21:11
Do you have a reference for that? – ajbeaven Aug 17 '10 at 2:30
I think when a user adds a photo the photo goes into the desired folder, and facebook auto creates a templatized stream for that image, so when you like an image your actually liking the generated stream item. not 100% sure but that's how I would develop it to keep the entities separate. – RobertPitt Aug 17 '10 at 9:27
show 1 more comment

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.