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.

The Graph API doesn't work and I get error code 100 when post /ID/likes with no parameters like the documentation says.

Can anybody help me? Is this even possible to do as the documentation say? If I try the Graph API Explorer I get the same error.

http://developers.facebook.com/tools/explorer

share|improve this question
What are you trying to like? Some more details, please. – CBroe Jul 14 '12 at 19:42

2 Answers

The likes connection is for GET requests only

All the pages this user has liked.

You cannot use it to post likes.

You can read the pages that a User has liked by issuing an HTTP GET to /PROFILE_ID/likes with the user_likes or friends_likes permissions.

Read more at http://developers.facebook.com/docs/reference/api/user/#likes

share|improve this answer
Yes, the abuse rate would be too high and there would be pages with millions of fans just because of an application which posts the likes. – Birk Jul 14 '12 at 20:55

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

If the write is successful, you get the following return.

Description         Type
If the like succeeded   boolean
share|improve this answer

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.