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'm using this code:

$facebook->api('/me/likes/', 'post',  array('url' => 'http://www.google.com'));

I get the following error:

Fatal error: Uncaught OAuthException: (#200) App does not have permission to make this call thrown in

The scope (permissions) is:

'scope' => 'publish_stream, email'
share|improve this question
1  
Please stop writing tags in titles. – Lightness Races in Orbit Jan 10 '12 at 12:45

2 Answers

up vote 3 down vote accepted

The only thing that can be programmatically liked is facebook Objects with the likes connection.

Taken from https://developers.facebook.com/docs/reference/api/ :

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


UPDATE :

The user object also has a likes connection, but that is used for aggregation of likes for other objects, it is not possible to "like" a user. ( thankfully ;P )

Thanks to @Juicy Scripter for pointing this out...

share|improve this answer
1  
With one exception, user object. ;) Which have this connection for other reason, aggregation of likes for other objects – Juicy Scripter Jan 10 '12 at 16:20
Very true Mr.Juicy :) thanks for that... – Lix Jan 10 '12 at 16:42

From: https://developers.facebook.com/docs/reference/api/page/

To get the list of page likes from a user you need to HTTP Get to /me/likes with a valid user access token with at least the user_likes permission. There is no API method call to add a page to the likes or remove a page from the likes.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 21:02

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.