脸书好友列表
我如何使用新的 facebook api 获取我的好友列表。我使用下面的代码获取了好友列表,
$friends = $facebook->api('/uid/friends');
但如果我传递他们的用户 ID,我将无法获取好友列表一样的功能..
How can i get the list of my friends friends list using new facebook api. i got the friend list using the below code,
$friends = $facebook->api('/uid/friends');
but i am not able to get friend list if i pass their userid in the same function..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能,那是他们的私人数据,所以它在他们的控制之下。如果他们希望应用程序能够访问它,他们会授予许可,并且应用程序可以代表他们这样做。
You can't, that's their private data so it's under their control. If they then want the application to have access to it, they would grant permission and it can do so on their behalf.
Facebook 好友列表仅获取可标记的好友列表。
Facebook 不会访问完整的个人资料好友列表,它仅显示您个人资料中的好友列表总数。
如果您应用 Facebook 开发者步骤,pod 和 plist 设置所有其他内容。
这是我在 Swift 3.0 可标记好友列表中的代码。
appdelegate.swift
viewcontroller.swift
tableview.swift
tableviewcell.swift
Facebook friend list only fetches a taggable friend list.
Facebook does not access full profiles friend list, it shows only total friend list count in your profile.
pod and plist setting all other should you apply Facebook Developer steps.
So is here my code in Swift 3.0 taggable friend list.
appdelegate.swift
viewcontroller.swift
tableview.swift
tableviewcell.swift