ios 无法获取使用 facebook sdk 的朋友的 ID
Can't get the id of friends using facebook sdk for ios
您好)有人可以帮帮我吗?我需要从 facebook 获取用户的好友 ID。我在 facebook "me/friends" 上看到了这个方法。使用他们的 Graph API Expolorer 我得到了这个结果:
{
"data": [
],
"summary": {
"total_count": 1
}
}
我只收到了我朋友的数量。但是我怎样才能得到朋友ID?
自 Graph API 的 v2.0 起,/me/friends
将 仅 return 那些也在使用相同应用程序的朋友。
见
The /me/friends
endpoint no longer includes the full list of a person's friends. Instead, it now returns the list of that person's friends who are also using your app.
您好)有人可以帮帮我吗?我需要从 facebook 获取用户的好友 ID。我在 facebook "me/friends" 上看到了这个方法。使用他们的 Graph API Expolorer 我得到了这个结果:
{
"data": [
],
"summary": {
"total_count": 1
}
}
我只收到了我朋友的数量。但是我怎样才能得到朋友ID?
自 Graph API 的 v2.0 起,/me/friends
将 仅 return 那些也在使用相同应用程序的朋友。
见
The
/me/friends
endpoint no longer includes the full list of a person's friends. Instead, it now returns the list of that person's friends who are also using your app.