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 achieved Facebook sharing with a single external image using this syntax:

<a href="http://www.facebook.com/sharer.php?s=100&amp;p[title]=test&amp;p[url]=http://www.mysite.com&amp;p[images][0]=http://www.yoursite.com/image1.png&amp;p[summary]=Description">

is it possible to use more than one image? I tried with this syntax

...p[images][0]=http://www.yoursite.com/image1.png&amp;p[images][1]=http://www.yoursite.com/image2.jpg...

but it did not work

Thanks in advance,

Andrea

share|improve this question
Andrea - did you ever figure this out? I tried the same thing with no luck. – Adam Apr 11 at 15:06
@Adam: So far I haven't found a solution for this problem – Andrea Apr 24 at 15:57
Same here. I'm guessing it's not possible by messing with the sharer URL? (shrug) – Adam Apr 28 at 17:10

1 Answer

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/

share|improve this answer
Thank you for your answer, unfortunately the pages I need to share are 3rd party web pages so I can't edit them. – Andrea Aug 25 '11 at 7:28

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.