如何使用 facebook-php-sdk 的 example.php、facebook.php 和 base_facebook.php 获取相册

发布于 2024-12-23 08:06:14 字数 624 浏览 0 评论 0原文

在 facebook-php-sdk 中有一个 example.php 文件,我们可以轻松获取我们的个人信息:

$user_profile = $facebook->api('/me');

当然我得到:

 Array ( [data] => Array (

以及我的所有个人数据,没关系。但当我这样做时,

$facebook->api('/me/albums');

我得到:

Array ( [data] => Array
(
)

)

仅此而已。什么是失败?它很好奇,因为当我尝试使用以下方式获取我的专辑时:

https: //developers.facebook.com/tools/explorer/?method=GET&path=me%2Falbums

它工作正常。

in the facebook-php-sdk there is an example.php file when we can get our personal information easily doing:

$user_profile = $facebook->api('/me');

of course I get:

 Array ( [data] => Array (

and all my personal data, that is ok. But when i do

$facebook->api('/me/albums');

i get:

Array ( [data] => Array
(
)

)

and nothing more. What is failing? Its curious because when I try to get my albums using:

https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Falbums

it works fine.

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

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

发布评论

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

评论(1

筱武穆 2024-12-30 08:06:14

您接受了访问令牌的哪些权限?
您可能缺少:user_photos

您可以使用https://developers 检查您的访问令牌.facebook.com/tools/debug 查看拥有哪些权限。

What permissions did you accept for the access token?
You may be missing: user_photos

You can check your access token using https://developers.facebook.com/tools/debug to see what permissions is has.

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