我想获得专辑照片到目前为止我已经能够获得专辑信息
我正在使用facebook c#sdk 5.0 for dot net framework 4
到目前为止,代码是dynamic friends = app.Get("me/albums");
这提供了data
,我们可以获得此处提到的所有内容http://developers.facebook.com/docs/reference/api/album/
但我无法建立照片中提到的连接
答案 0 :(得分:7)
到目前为止,我已经找到了这种方法,如果有一个好的或不同的方法,请告诉我。
//Get the album data
dynamic albums = app.Get("me/albums");
foreach(dynamic albumInfo in albums.data)
{
//Get the Pictures inside the album this gives JASON objects list that has photo attributes
// described here http://developers.facebook.com/docs/reference/api/photo/
dynamic albumsPhotos = app.Get(albumInfo.id +"/photos");
}