Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I upload a photo to a Facebook album I get an ID, (e.g. 239927946070815). How do I get the link to this photo on Facebook, e.g. http://www.facebook.com/#!/photo.php?fbid=239927946070815&set=a.239886702741606.63927.100001608349025&type=1&theater"

I'm currently creating the link through string ops and I've seen solutions which use Regex, but it remains a "brittle" approach. Is there an official spec relating to this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Presuming you use the facebook C# SDK, try this:

public String GetPhotoLink(string photoID)
{
    var fb = new FacebookWebClient();
    dynamic albums = fb.Get("me/albums");
    foreach (dynamic albumInfo in albums.data)
    {
        dynamic photos = fb.Get(albumInfo.id + "/photos");
        foreach (var photo in photos.data)
        {
            if (photo.id == photoID)
            {
                return photo.link;
            }
        }
    }
    return String.Empty;
}
share|improve this answer
Thank you, this works. I was hoping it would be possible without iterating over all photos but the upside is that this will always work. – Pete De Jager Nov 24 '11 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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