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.

Is there any way to make facebook share button which post custom text on the wall or news feed?

share|improve this question

5 Answers

We use something like this [use in one line]:

<a title="send to Facebook"
 href="http://www.facebook.com/sharer.php?s=100&p[title]=YOUR_TITLE&p[summary]=YOUR_SUMMARY&p[url]=YOUR_URL&p[images][0]=YOUR_IMAGE_TO_SHARE_OBJECT"
 target="_blank">
 <span>
  <img width="14" height="14" src="'icons/fb.gif" alt="Facebook" /> Facebook 
 </span>
</a>

share|improve this answer
2  
Do you know how to make this link open in a popup or modal window? Just can't find a method that works, it's not as simple as using some generic popup window code... – tvgemert Jun 1 '11 at 15:44
More effective then the answer on top. – Mateng Sep 5 '12 at 17:32
3  
@tvgemert: Try <a class="facebook" target="_blank" onclick="return !window.open(this.href, 'Facebook', 'width=640,height=300')" href="http://www.facebook.com/sharer/sharer.php?u=YOUR_URL">Facebook</a> etc. – Mateng Sep 6 '12 at 9:39
Perfect, this also works for hashbang urls! – dvtoever Sep 13 '12 at 10:16

To give custom parameters to facebook share its better to give only the link and facebook gets its Title + Description + Picture automatically from the page that you are sharing. In order to "help" facebook API find those things you can put the following things in the header of the page that you are sharing:

<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<meta property="og:image" content="thumbnail_image" />

Check here

If the page is not under your control use what AllisonC has shared above.

For popup modalview type behavior:

Use your own button/link/text and then you can use a modal view type of popup this way:

<script type= 'text/javascript'>
$('#twitterbtn-link,#facebookbtn-link').click(function(event) {
var width  = 575,
    height = 400,
    left   = ($(window).width()  - width)  / 2,
    top    = ($(window).height() - height) / 2,
    url    = this.href,
    opts   = 'status=1' +
             ',width='  + width  +
             ',height=' + height +
             ',top='    + top    +
             ',left='   + left;

window.open(url, 'twitter', opts);

return false;
});
</script>

where twitterbtn-link and facebookbtn-link are both ids of anchors.

share|improve this answer
If URLs are identical, is the data from meta properties being cached by facebook? Or can I put in, e.g., individual POST data with every page view? – Mateng Sep 6 '12 at 9:14
I didnt get what you mean by that. – Shayan Ali Sep 18 '12 at 12:05

You have several options:

  1. Use the standard FB Share button and set text via Open Graph API and meta tags on your page.
  2. Instead of Share, use FB.ui's stream.publish method, which let's you control the URL, title, caption, description and thumbnail at run-time.
  3. Or use http://www.facebook.com/sharer.php with appropriate parameters.
share|improve this answer

you could combine AllisonC's idea with window.open function: http://www.w3schools.com/jsref/met_win_open.asp

function openWin(url) {
    myWindow = window.open(url, '', 'width=800,height=400');
    myWindow.focus();
}

And then on each link you call the openWin function with the right social net url.

share|improve this answer

This is a simple dialog feed that Facebook offer's. Read here for more detail link

share|improve this answer

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.