如何使用 PHP SDK 从 Facebook 获取我的所有照片?
我是 Facebook 和 PHP 的新手,到目前为止,我设法连接到 Facebook 会话+权限,甚至获取登录的用户个人资料图片。
问题si:如何获取所有登录的用户照片并随机选择一张?
谢谢
I am new to Facebook and PHP and so far I managed to connect to Facebook session + permissions, and even to get the logged in user profile picture.
question si : how can I get all of the logged in user photos and pick one randomized one?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是从用户获取照片的 api。
this is the api for getting photos from the user.
我将使用 FQL
photo
和album
表:并使用 PHP-SDK:
您还可以在
fql.query
控制台。I would use the FQL
photo
andalbum
tables:And using the PHP-SDK:
You can also test the above query in the
fql.query
console.