I have a website, and I have added the like button with the javascript sdk
.
This is the code
<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/it_IT/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
and this is the html code
<div class="fb-like" data-href="WEBSITE URL" data-send="true" data-width="450"data-show-faces="false" data-action="like"> </div>
I have also added the og: meta
in the head
<meta property="og:description" content=" the description of my website" />
<meta property="og:title" content="title" />
<meta property="og:url" content="url"/>
<meta property="og:image" content="pic" />
<meta property="og:type" content="website"/>
<meta property="fb:admins" content="facebook id"/>
The problem is this:
When i click the like button on my website, I can see all the information (name, pic, description), but when I go to the facebook profile, the description is replaced with this:
Link
Link
Link
Link
I can't understand where the problem is. Is there someone who can help me?