如何使用用户的 uid 在 Facebook 中显示用户的姓名?
我正在为我的 iframe 画布应用程序异步加载 JavaScript SDK。
我知道 fbml 已被弃用并被逐步淘汰,但是 xfbml 还可以吗?
我还可以使用 fb:name 例如吗?
?
例如,是否有更好的方法来打印用户 100 个朋友的姓名?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要开始使用 Graph API,这里有一个快速工作示例来帮助您入门:
只需替换为您的应用程序 ID 即可开始!
You need to start using the Graph API, here's a quick working example to get you started:
Just replace with your application id and you are good to go!
你说得对,你可能不应该再使用
fbml
,但是来自“社交插件”的所有标记仍然会受到鼓励(即喜欢按钮
)。不管它是否被弃用,我更喜欢完全控制我的应用程序的布局 - 而是使用 标签,您可以从“http://graph”获取所有朋友列表.facebook.com/UID/friends”并解析生成的
JSON
。 (在 PHP-SDK 中:$fb->api("/me/friends");
)。You have right, you probably shouldn't use
fbml
any longer, but all markup from "social plugin" will be still encourage (i. e.like button
).No matter is it deprecated or not, I prefer got full controll of layout my app - Instead use
<fb:name...
tag, you could get all friends list from "http://graph.facebook.com/UID/friends" and parse resultingJSON
. (in PHP-SDK:$fb->api("/me/friends");
).