I am using Facebook C# SDK and it's working pretty well. I want to show user's albums and it's photos on my site. I am using graph api. I did get the albums using this method :-
fb.GetAsync("me/albums/photos", (val) =>
{
if (val.Error == null)
{
IDictionary<string, object> dict = val.Result as IDictionary<string, object>;
}
else
{
// TODO: Need to let the user know there was an error
//failedLogin();
}
});
My question is how do i get the photos present in each of these albums?
Thanks in advance :)
photoswithpicture. You can also give in query stringtype=largewhich specifies you need a large cover photo of the album. – Anthony Feb 10 '11 at 3:38