Graph API を使用して Facebook ページのフォト ストリームを取得する方法はありますか? たとえば、コカ・コーラ ページのフォト ストリームはhttps://www.facebook.com/cocacola/photos_streamにあります。
質問する
1925 次
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 に答える