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.

Where can I find full docs for using http://www.facebook.com/sharer.php ? I want to know all aviable params to this url for sharing something.

P.S. http://developers.facebook.com/docs/reference/plugins/like/ gave me no info.

share|improve this question

1 Answer

up vote 2 down vote accepted

There's no documentation because the new way for sharing is the Like button. But you can add do http://www.facebook.com/sharer.php?u=yourURL.

To specify the image and the description, you have to add the following meta data in the header of your website.

Image

<meta property="og:image" content="URL of your image" />

Description

<meta name="description" content="Your description" />

Facebook will use the meta og:image to find the image and the meta description for the description.

Cheers

share|improve this answer
but how can I specify the description and image? – Molfar Apr 4 '11 at 17:01
I edited my post to be more specific. – Xavier Balloy Apr 4 '11 at 17:07

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.