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 experimenting with fetching a list of public likes,

eg graph.facebook.com/[my own id]/likes gives a list of books, authors etc that I've "liked".

But if I use the ID for someone I'm not connected to, although I can see on their public page they have a long list of "likes" that I can just go and look at, the graph API returns an empty list.

Is there something I'm missing about graph API permissions and public likes?

Thanks for any information you can give!

share|improve this question

1 Answer

up vote 1 down vote accepted

Is there something I'm missing about graph API permissions and public likes?

Apps are not allowed to access just any data, only because it might be “public” when viewed through facebook.com.

For most data, you’ll have to request the according permissions from the current user of your app to access it via the API.

share|improve this answer
Thanks; in the graph explorer app I've selected 'user likes' and 'friends likes', but there doesn't seem to be anything for 'stranger's likes'.... – sarahg Oct 3 '12 at 1:28
As I said, apps are not allowed to access just any data for any given Facebook user. – CBroe Oct 3 '12 at 13:06
I'll interpret that as "yes the programmer's interface is significantly different to the user interface". Weird but it answers my question, thanks. – sarahg Oct 4 '12 at 23:57

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.