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 asp.net mvc3 framework and have uploaded my site to server. But on clicking facebook like button, it shows up on facebook as Index instead of site name. How can i change that? Also is there a way to add logo in front of the name also? Here is my fb code:

<div class="fb-like" data-href="http://www.example.com/" data-send="false" data-width="450" data-show-faces="false" data-colorscheme="light" data-font="arial"></div>

Facebook script:

<div id="fb-root"></div>
    <script>(function (d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=*********";
    fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
share|improve this question
Please add more tags for more exposure to your question. Add the following tags: facebook and facebook-javascript-sdk – Brendan Vogt Sep 10 '12 at 8:48
@BrendanVogt - Hi i added all the FB used code. Thanks! – NoviceMe Sep 10 '12 at 13:21
I meant tags, not code. Tags are those blue "buttons" beneath your question. More tags means more people see your question :) – Brendan Vogt Sep 12 '12 at 11:47

1 Answer

up vote 3 down vote accepted

You need Open Graph tags on the site or at the very least you need to give your home page a proper page title. Add OG tags to whatever view that represents the "liked" URL.

Facebook makes an http request to the url to get some meta data, then they look for Open Graph tags located in page header, if those are not found it will fall back to page title and meta description attribute. Look at this page in Open Graph Tags section. Here is a sample of an open graph tag implementation in html:

<head>
<title>My Super site</title>
<meta property="og:type" content="website">
<meta property="og:image" content="http://example.com/my_super_image.jpg">
<meta property="og:title" content="My super site">
</head>

Also, the site MUST BE LIVE IN PRODUCTION, so Facebook can access the page.

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.