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 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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.