Facebook PHP SDK:获取(裁剪)专辑封面
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
支持的相册类型有
thumbnail
、small
和album
,要检索其中之一,请使用:Supported types for albums are
thumbnail
,small
andalbum
and to retrieve one of them you use: