Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用图形 api 创建所有用户朋友照片的照片流。您如何使用图形 api 创建类似的东西。我想本质上我想为我所有朋友的照片创建一个按时间顺序排列的相册。
我应该如何去完成这个。
您应该首先让用户的朋友使用/me/friends. 然后您可以循环浏览朋友列表并获取他们的照片,例如:
/me/friends
<img src="http://graph.facebook.com/{friend_id}/picture" />
您可以使用 JavaScript 库来制作动画...
我最终通过将 facebook 用户的整个图像集合保存在应用程序的数据库中并查询它们来解决这个问题SORT BY datetime。
SORT BY datetime