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 my script, I fetch graph.facebook.com/<page_id>/members/<user_id> with file_get_contents() to inspect that the user already liked the page or not. That method worked out just fine for a year now, but now it returns blank JSON array for FEW of the users. Tried to dislike/like again the page, but the result is the same for these users..

Proper return for a user who liked the page:

{
   "data": [
      {
         "name": "John Doe",
         "id": "000000000"
      }
   ]
}

Bogus return:

{
   "data": [

   ]
}

Any idea?

share|improve this question
It could be the user's privacy settings don't allow everyone to see their likes. This could give you this empty data set since Facebook would successfully get the result, then filter it out before returning it to you via the API. – cpilko Jul 29 '12 at 15:46
That's acceptable, but these users never changed the privacy settings, as far as I know. Currently I have 310 "proper" users and 5-6 with the bogus return. – Eduard7 Jul 30 '12 at 6:31
If these users haven given you their user_likes permission, I can’t see a reason for this happening. Please check if you have this permission (or even request it from them again) – and if this still does not work, file a bug report with Facebook. – CBroe Jul 30 '12 at 9:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.