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.

http://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.google.com

How can I customize the text and image. It looks like Facebook pulled the docs.

share|improve this question

2 Answers

up vote 5 down vote accepted

What you are talking about is the preview image and text that Facebook extract when you share a link. Facebook users the Open Graph Protocol to get this data.

Essentially, all you'll have to do is place these og:meta tags on the URL that you want to share -

<meta property="og:title" content="The Rock"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/>
<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>
<meta property="og:site_name" content="IMDb"/>
<meta property="fb:admins" content="USER_ID"/>
<meta property="og:description"
      content="A group of U.S. Marines, under command of
               a renegade general, take over Alcatraz and
               threaten San Francisco Bay with biological
               weapons."/>

As you can see there is both an image property and a description too. When you make changes to your pages og:meta tags, you can test these changes using the Facebook Debugger. It will tell you if you have made any mistakes (and how to fix them!)

share|improve this answer
I do not think that this is the answer ... because these tags are hardcoded into the html, and thus force any/all fb buttons on the entire page to obey these values ... maybe I have 3 fb share buttons on one page, and I want each one to have a customized image/description. ... True, you could use js to change the meta values before the share action, but that does not seem to actually work, and dynamically changing meta tags seems like bad practice (as that is not there purpose). ... I would use the Lee Sibbald sharer.php solution instead. – dsdsdsdsd Apr 2 at 9:21
however, with that being said, I do use these meta tags on each page, in case a user just copy/pastes my page's url into there fb post, then these metas do the trick ... but not for individual fb buttons ("share this painting" or "share this joke") – dsdsdsdsd Apr 2 at 9:24
Regarding dynamic OG tag generation - I've done this on several occasions using PHP, whereby the OG tags are dynamically populated depending upon QueryString parameters. It works as long as the parameters are in some way unique to each Button (so, for example, adding "?id=123" to the end of each Button URL and changing "123" to be unique). Having had discussions with people at Facebook this was not flagged as bad practice and so I believe it's perfectly fine to work this way. Note however that JS can not be used for this as the FB scraper does not have a JS engine. – Lee Sibbald Apr 19 at 10:02

Try this (via Javascript in this example):

'http://www.facebook.com/sharer.php?s=100&p[title]='+encodeURIComponent('this is a title') + '&p[summary]=' + encodeURIComponent('description here') + '&p[url]=' + encodeURIComponent('http://www.nufc.com') + '&p[images][0]=' + encodeURIComponent('http://www.somedomain.com/image.jpg')

I tried this quickly without the image part and the sharer.php window appears pre-populated, so it looks like a solution.

I found this via this SO article:

Want custom title / image / description in facebook share link from a flash app

and this link contained in an answer from Lelis718:

http://www.daddydesign.com/wordpress/how-to-create-a-custom-facebook-share-button-for-your-iframe-tab/

so all credit to Lelis718 for this answer.

[EDIT 3rd May 2013] - seems like the original URL i had here no longer works for me without also including "s=100" in the query string - no idea why but have updated accordingly

share|improve this answer
This is amazing. Thanks! – ezekielDFM Feb 22 at 16:12
Hey @lee-sibbald Looks like Facebook changed it around and I can't get an image to show up in that dialog anymore. Interesting... – Julian H. Lam May 10 at 16:34
@JulianH.Lam have you took notice of the edit I added a few days ago? I'm using the link shown above including "s=100" and it appears to be working fine – Lee Sibbald May 10 at 18:30
Hi @LeeSibbald I did, actually, but it still is not working. I ended up redoing the dialog by using the newer "Feed Dialog" window, which isn't perfect either. Thanks anyway! – Julian H. Lam May 12 at 13:31
@JulianH.Lam Hmm strange, although it could be a typical partial FB rollout of new functionality. The only other option I can think if is to use: facebook.com/sharer.php?u=http://www.nufc.com but note this relies on you having valid OG Meta Tags at the URL you define, to specify the story description, image etc. – Lee Sibbald May 12 at 13:46
show 3 more comments

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.