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 want to share to facebook a link and allow the user to choose from an array of thumbnails. This ability of choosing the thumbnail was capable with the share button but facebook has deprecated that functionality and the share button in favor of like which to my knowledge does not allow for selection of thumbnail it only uses one.

Can someone tell me how to pass a particular array of images to the share button object OR how to enable this functionality using the facebook graph API?

share|improve this question
So how do I pass a group of pictures to the picture node of the var obj?'code'function postToFacebook(){ // calling the API ... var obj = { method: 'feed', link: 'mysite.com/test/don/poll/social/index.html';, picture:'mysite/images/012412-Cameron-Diaz-50.jpg';, name: 'I just voted for:', caption: 'Cameron Diaz' }; function callback(response) { } FB.ui(obj, callback); } 'code' – Donald Mcgrath Jan 25 '12 at 1:28

1 Answer

If you share the url link, that url link can have many og:image tags in it. See: https://developers.facebook.com/docs/reference/plugins/like/ for further information on how to setup the og meta tags in your url.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21: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.