Online_presence no longer works

I am trying to execute the following FQL query to get online_presence

my friends:

SELECT
  uid, name, online_presence
FROM
  user
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())

      

But it returns these items for each of my friends:

{
  "uid": 150323242,
  "name": "John Doe",
  "online_presence": null
}

      

It started yesterday, I missed any announcement in FQL API not working anymore?

If I did, is there a way to get this through the Graph API?

+3


source to share


1 answer


This is a bug: http://developers.facebook.com/bugs/263442327069657 , you must add yourself as someone who can reproduce and follow it.



+1


source