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?