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.

For user, that has installed my application I can see permissions $facebook->api("/me/permissions");

But if I asked from user when he installed my app permission to get likes of his friends, when I have array of likes:

array(1) { ["data"]=> array(0) { } }

I don't know if he really has 0 likes, or I haven't permission to see it

$facebook->api("/FRIEND_ID/permissions") also returns array(1) { ["data"]=> array(0) { } }

How I can know it?

share|improve this question

1 Answer

You cannot query for a user's friends permissions they've granted unless they've explicitly authed your application. Regarding the 'likes', what exactly are you trying to pull? You can only query for the number of likes a page has, which is not a real user.

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.