Facebook PHP SDK:获取(裁剪)专辑封面

发布于 2024-10-19 19:47:14 字数 387 浏览 0 评论 0原文

我正在使用 Facebook 的 PHP SDK 和 Graph API 获取一个用户的所有相册,然后将它们显示给他,以便他可以选择要浏览的相册。我希望它们显示在网格中,就像 Facebook 所做的那样:每张图片都具有相同的宽度和高度。

问题是,当我这样做时:

   $fb->api('/' . $album_id . '/picture?access_token=' . $accessToken 

我得到的是具有原始尺寸的图片版本,而不是当您单击“照片”时 Facebook 向您显示它们的方式,即调整为固定尺寸的裁剪版本。

我尝试将 ?square 添加到请求中,但仍然得到相同的结果。

有什么想法吗?

I am using Facebook's PHP SDK and Graph API to obtain all albums from one user, and then display them to him so he can select which album he will browse. I want them displayed in a grid, just like Facebook does: every picture with the same width and height.

The problem is that when I do:

   $fb->api('/' . $album_id . '/picture?access_token=' . $accessToken 

I get a version of the picture with the original dimensions, and not the way that Facebook shows them to you when you click on Photos, i.e. a cropped version adjusted to a fixed size.

I have tried adding ?square to the request, but still getting the same result.

Any ideas?

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

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

发布评论

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

评论(1

浮生面具三千个 2024-10-26 19:47:14

支持的相册类型有thumbnailsmallalbum,要检索其中之一,请使用:

$fb->api('/' . $album_id . '/picture?type=album&access_token=' . $accessToken 

Supported types for albums are thumbnail, small and album and to retrieve one of them you use:

$fb->api('/' . $album_id . '/picture?type=album&access_token=' . $accessToken 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文