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 :)

link|improve this question

Were you able to get the album default thumbnails? I'm getting an error when I try to do app.Get(album.id + "/picture") Unexpected character encountered while parsing value: �. Line 1, position 1. – Praveen Feb 9 '11 at 6:06
@Praveen :- el_tone's answer is the way to go. You need to make a request to the url given by el_tone but replace photos with picture. You can also give in query string type=large which specifies you need a large cover photo of the album. – Anthony Feb 10 '11 at 3:38
I have tried that Kar. Everything else comes back fine (photos, names etc.) but for the album picture. The SDK is not able to parse the JSON correctly for some reason. – Praveen Feb 10 '11 at 4:16
OK here's the deal. Turns out, FB does a 302 to the actual picture url instead of returning a json. The SDK was trying to deserialize the response which was throwing an exception; since the response was nothing but an image. I'm checking for the ContentType and returning the requested url instead of the response. From FB's documentation, /picture returns "An HTTP 302 with the URL of the album's cover picture" – Praveen Feb 10 '11 at 5:34
@Praveen :- That was exactly what i was telling you. SDK won't work. But if you paste the same url in browser along with accesstoken you should see the picture without any problems. I have tried that and it works fine in my case. – Anthony Feb 11 '11 at 3:27
feedback

2 Answers

up vote 2 down vote accepted

An album is a graph object so once you have its id you can retrieve it like so:

http://graph.facebook.com/{albumid}/photos?access_token={token}

You can also use dynamics with the SDK (if you are using .Net 4) which eliminates the need to cast to <IDictionary> in the callback and makes for much cleaner code when diving through the graph objects.

link|improve this answer
- Thanks. Exactly what i needed. – Anthony Feb 9 '11 at 3:44
feedback

Hi why you dont use FQL to query album and Poto tables to get what you want :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.