如何使用 graph api 从 Facebook 新闻源获取缩略图?

发布于 2024-11-06 02:02:01 字数 325 浏览 0 评论 0 原文

我在 iPhone 应用程序中获取 Facebook 新闻源。但对于某些类型的新闻源来说,它并不完整。如果新闻源的类型是“照片”,我无法获取缩略图。我尝试调用这样的网址。

https ://graph.facebook.com/801013079_144997952238328 其中“801013079_144997952238328”是新闻源ID..但它没有返回图片来显示缩略图..

请帮助我解决这个问题。

提前致谢。

I am getting facebook news feed in my iPhone application.But its not complete for some types of news feeds. If the type of news feed is "photo" i can't get thumbnail image.I tried by calling such url..

https://graph.facebook.com/801013079_144997952238328 where "801013079_144997952238328" is the news feed id.. But it was not returning a picture to show thumbnails..

Please help me to solve this problem.

Thanks in advance.

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

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

发布评论

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

评论(1

冷月断魂刀 2024-11-13 02:02:01

图表本身的新闻提要不是照片。一个简单的方法是解析 feed 本身,从 feed 中获取图片 url,其中 type=photo

要清除一些混乱,您可以添加 fields=type,object_id,picture

https://graph.facebook.com/me/home?access_token=youraccesstoken&fields=type,object_id,picture

请注意,object_id 是新闻源项目的 ID。如果您使用图表来获取对象 ID,您将获得许多不同尺寸的图像链接,但如果您确实想要缩略图,则来自 feed 的图片值就可以了。

The news feed from graph itself isn't a photo. A simple way to do it is to parse the feed itself, get the picture url from the feed where the type=photo

To clear out some of the clutter you can add fields=type,object_id,picture

https://graph.facebook.com/me/home?access_token=youraccesstoken&fields=type,object_id,picture

Note that the object_id is the id of the news feed item. If you use graph to get the object id, you'll get a number of links to the image in various sizes, but if you really want the thumbnail, the picture value from the feed is just fine.

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