从专辑Facebook C#sdk获取照片

我想获得专辑照片到目前为止我已经能够获得专辑信息

我使用facebook c#sdk 5.0作为dot net framework 4

到目前为止,代码是dynamic friends = app.Get("me/albums"); 这提供了data ,我们可以得到这里提到的所有内容http://developers.facebook.com/docs/reference/api/album/但我无法建立照片中提到的连接

到目前为止,我已经能够找到这种方法,如果有一个好的或不同的方法,请告诉我。

 //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"); }