I was implementing the facebook like with Open Graph in one of my test page. The page seems to work fine, showing the "Like" with all the parameters set in the head of the page with tags <meta property="og:...
Image "like"--> http://imageshack.us/photo/my-images/443/paginalike.jpg/
The problem arises when I go to see like this on my profile, because it shows correctly image and title, but not the description and url. Instead of the description and url are three labels show "link" ..
Image "like" on my facebook profile --> http://imageshack.us/photo/my-images/89/likesulmioprofilo.jpg/
How can I fix this? Below I report the code of my page (app_id with facebook hidden) ..
Thanks
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
<meta property="fb:app_id" content="xxxxxxxxxxxxxxx" />
<meta property="og:title" content="Titolo" />
<meta property="og:type" content="product" />
<meta property="og:description" content="Phasellus rhoncus risus eu ante vehicula vitae venenatis tellus egestas. Etiam turpis orci, sagittis non cursus vitae, congue quis nulla. Nam viverra blandit lobortis. Quisque eu lectus orci. Nullam vehicula sapien nec lorem commodo eu ornare est vestibulum! Ut mollis gravida ornare! In vitae purus eget risus dictum vulputate." />
<meta property="og:url" content="http://www.ilmiosito.it/like.php" />
<meta property="og:image" content="http://www.ilmiosito.it/logo_test.jpg" />
<meta property="og:site_name" content="Site test" />
</head>
<body>
<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&appId=xxxxxxxxxxxxxxx";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<div class="fb-like" data-href="<?php echo $_SERVER['SCRIPT_URI'];?>" data-send="true" data-width="450" data-show-faces="false"></div>
</body>
</html>