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.

I follow this answer to post a photo on Facebook. How can I add a link to the photo? i.e., when visitors click on the uploaded photo, it open the pre-defined link.

share|improve this question

1 Answer

up vote 2 down vote accepted

Quite simple, just use the href key in the media attachment dictionary.

{"media": [
    { 
        "type": "image", 
        "src": "http://icanhascheezburger.files.wordpress.com/2009/03/funny-pictures-kitten-finished-his-milk-and-wants-a-cookie.jpg", 
        "href": "http://icanhascheezburger.com/2009/03/30/funny-pictures-awlll-gone-cookie-now/"
    }, 
    {
        "type": "image", 
        "src": "http://photos.icanhascheezburger.com/completestore/2009/1/18/128768048603560273.jpg", 
        "href": "http://ihasahotdog.com/upcoming/?pid=20869"
    }]
}

http://developers.facebook.com/docs/guides/attachments

share|improve this answer

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.