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 am using the following script to share links with Facebook:

<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><a href="http://www.facebook.com/share.php?u=<url>" onclick="return fbs_click()" target="_blank">Share on Facebook</a>

When facebook share screen popup opens it displayes title and description. I want to provide my own title and description of share are there parameters available for this?

share|improve this question
Create a facebook application . developers.facebook.com – Akhil Thayyil Feb 20 '12 at 8:19

2 Answers

up vote 0 down vote accepted

Create a Facebook Application at http://developers.facebook.com/

Then embed Open Graph metatags in your document that describe to the Facebook document linter which title, image, description, and URL to use when shared.

Open Graph Documentation
Open Graph Debugger

Here is an example copied from the Facebook documentation that shows the Open Graph meta tags used to describe a website.

<html>
    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# 
                  website: http://ogp.me/ns/website#">
     <meta property="fb:app_id"               content="YOUR_APP_ID"> 
     <meta property="og:type"                 content="website"> 
     <meta property="og:url"                  content="URL of this object"> 
     <meta property="og:image"                content="URL to an image">
     <meta property="og:title"                content="Name of blog">
     <meta property="og:description"          content="Description of object"> 
    </head>
<body>
    <!--a wonderful website  -->
</body>
</html>
share|improve this answer
1  
it is my website i don't how can i use open graph meta tags ? will it work without facebook app ? – Faisal khan Feb 20 '12 at 8:41
Not sure if they will work without being related to a valid Facebook Application ID. Might just give it a try and see if it does, if not just register a Facebook Application, it's free. – spoon16 Feb 26 '12 at 21:58

See http://developers.facebook.com/docs/share/ for more detailed view of the Facebook Share.

I think you can change the t= parameter to change the title of your share post on Facebook, not sure if you can change the description, I think the description comes from the meta Description of the page you are sharing.

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.