so far I have been able to find this method, if there is a good or other approach, then please let me know.
dynamic albums = app.Get("me/albums");
foreach(dynamic albumInfo in albums.data)
{
dynamic albumsPhotos = app.Get(albumInfo.id +"/photos");
}
source
share