有没有办法让OpenGraph v2.0中的2个facebook用户的共同朋友?如果他们都是我的应用程序的用户怎么样?
更新: 根据我的研究,您只能使用mutual_friends用户上下文api获取使用您的应用程序的共同朋友 没有办法让所有共同的朋友
答案 0 :(得分:2)
对于v2.0中的共同朋友,您应该使用https://developers.facebook.com/docs/graph-api/reference/v2.0/user.context/mutual_friends
答案 1 :(得分:0)
您可以尝试调用以下API端点:
https://graph.facebook.com/v2.0/{friend_id}/friends
根据用户的隐私设置,您将看到两个用户的共同朋友。 e.g:
{
"data": [
{
"name": "Jane Smith",
"id": "xxxxxx"
},
{
"name": "John Smith",
"id": "yyyyyy"
},
{
"name": "Joe Blogs",
"id": "zzzzzz"
}
],
"paging": {
"next": "..."
}
}