Get photo from Facebook C # sdk album

I want to get album photos so far, I managed to get information about the album

I am using facebook c # sdk 5.0 for dot 4 network platform

the code so far dynamic friends = app.Get("me/albums"); gives it data, and we can get everything mentioned here http://developers.facebook.com/docs/reference/api/album/ but I can not establish the connection mentioned for photos

+3
source share
1 answer

so far I have been able to find this method, if there is a good or other approach, then please let me know.

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

All Articles