在哪里可以找到一些很棒的 facebook 图片/FQL Api 示例? (除了酒书的事)

发布于 2024-10-24 07:58:19 字数 78 浏览 1 评论 0原文

我正在尝试了解如何将用户的所有图片加载到数组中。(也许使用 PHP sdk?)我是 FQL 和 facebook API 的新手。请有人帮忙!

I'm trying to learn how I can get all of a user's pictures loaded into an array.(Maybe with the PHP sdk?) I'm new to FQL and the facebook API. Someone please help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怕倦 2024-10-31 07:58:19

获取用户创建的每个相册(使用 PHPSDK);

$albums = $FB->api('/me/albums'); 

参考如下: http://developers.facebook.com/docs/reference /api/user/

$albums 将包含位于此处的字段: http: //developers.facebook.com/docs/reference/api/album/

所以你可以循环遍历 $albums['data'] 并获取每个相册的照片列表

$album = $FB->api('/'.$albums['data'][loop_increment]['id']);

你得到的本质上是一个数组这些元素: http://developers.facebook.com/docs/reference/api/photo /

然后直接用 PHP 将所有元素合并到一个数组中。

Getting every album that a user has created is by this (using the PHPSDK);

$albums = $FB->api('/me/albums'); 

The reference for this is here: http://developers.facebook.com/docs/reference/api/user/

$albums will contain the fields located here: http://developers.facebook.com/docs/reference/api/album/

So you can loop through $albums['data'] and get the list of Photo's for each album

$album = $FB->api('/'.$albums['data'][loop_increment]['id']);

What you get back is essentially an array with these elements: http://developers.facebook.com/docs/reference/api/photo/

Then it's just straight PHP to amalgamate all the elements into a single array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文