获取 Facebook 好友的信息
我正在使用 Graph api 来获取好友列表。一旦我使用 /me/friend 收到朋友的 ID,现在我希望获得更多信息。我为它编写的代码是:
$fr = $app->facebook->api('/'.$uid);
echo $fr['id'];
虽然它给出了错误。我做错了什么?谢谢。
I am using Graph api to obtain friend list. Once I receive an id of friend using /me/friend, now I wish to obtain further information. Code I wrote for it is:
$fr = $app->facebook->api('/'.$uid);
echo $fr['id'];
Though it gives error. What am I doing wrong? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它给你什么错误?这可能会给我们提供一些线索,告诉我们出了什么问题。图表中的大多数错误都是因为您没有正确进行身份验证。
What error does it give you? That might give us a clue as to what went wrong. most errors from graph are because you haven't authenticated properly.