2

有没有办法使用 Graph API 获取 Facebook 页面照片流?例如可口可乐页面的照片流在:https ://www.facebook.com/cocacola/photos_stream 。

4

1 回答 1

-1

可能的连接:(?metadata=1)

   "metadata": {
      "connections": {
         "picture": "https://graph.facebook.com/cocacola/picture",
         "feed": "https://graph.facebook.com/cocacola/feed",
         "posts": "https://graph.facebook.com/cocacola/posts",
         "tagged": "https://graph.facebook.com/cocacola/tagged",
         "statuses": "https://graph.facebook.com/cocacola/statuses",
         "links": "https://graph.facebook.com/cocacola/links",
         "notes": "https://graph.facebook.com/cocacola/notes",
         "photos": "https://graph.facebook.com/cocacola/photos",
         "albums": "https://graph.facebook.com/cocacola/albums",
         "events": "https://graph.facebook.com/cocacola/events",
         "videos": "https://graph.facebook.com/cocacola/videos",
         "questions": "https://graph.facebook.com/cocacola/questions",
         "offers": "https://graph.facebook.com/cocacola/offers",
         "milestones": "https://graph.facebook.com/cocacola/milestones",
         "global_brand_children": "https://graph.facebook.com/cocacola/global_brand_children"
      },

如果您想在他们的信息流中查找照片,为什么不使用 /posts 并循环查找带有图片的帖子呢?

于 2012-11-28T15:26:04.940 回答