A few months ago I used to get Facebook friends ids with the graph api friendlists field. With this ids I was able to to get their friends picture with this kind of url : https://graph.facebook.com/{facebookId}/picture?type=square
It doesn't work anymore, now when I try to load these urls in my browser I get the following message:
"error": {
"message": "(#12) picture edge for this type is deprecated for versions v2.3 and higher",
"type": "OAuthException",
"code": 12,
"fbtrace_id": "FVhzO+b8CAh"
}
I am not even sure that the ids I get from the friendlists field are still friends Id, it seems to be something like list ids (what is a good thing for a field named friendists :D) because the ids start with the same six digits.
Is there a way to get all my friends ids? Am I doing something wrong now or has there been a change in the graph api rules in the last few months? My goal is to get friends pictures and to make my own leaderboard from my database because with the Facebook api I cannot fill the leaderboard if the player gives a "only me" visibility.
Thank you,
Alex