How to share an url on Facebook using more than one external image as thumbnails
I achieved Facebook sharing with a single external image using this syntax:
开发者_如何学C<a href="http://www.facebook.com/sharer.php?s=100&p[title]=test&p[url]=http://www.example.com&p[images][0]=http://www.example.com/image1.png&p[summary]=Description">
is it possible to use more than one image? I tried with this syntax
...p[images][0]=http://www.example.com/image1.png&p[images][1]=http://www.example.com/image2.jpg...
but it did not work.
You can put as many Open Graph img urls as you want. They need to go inside the head:
<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>
Make sure that img url is absolute :)
source: http://developers.facebook.com/docs/opengraph/
精彩评论