在Facebook上分享产品的问题

时间:2010-06-09 13:14:21

标签: facebook share product

我正在将facebook sharer用于我的网站上的分享产品。我尝试了所有方法来做到这一点..但我不知道问题出在哪里。

当我点击mysite中的facebook图标时,它会重定向到facebook并且不显示产品名称,产品图片,产品描述。它出现了无标题的文件。这是我使用的代码。

<head>
<meta name="title" content="<?=$fetpro['productname'];?>" />
<meta name="description" content="Join this bloc to help me get a deal at BBuys" />
<meta name="medium" content="medium_type" />
<link rel="image_src" href="http://www.mysite.com/admin/product_images/<?=$fetpro['product_image']?>" />
</head>
<body>
<a href="http://www.facebook.com/sharer.php?u=http://www.mysite.com/details.php?pro_id=<?php echo $fetpro['auto_id'];?>&t=<?php echo $fetpro['productname'];?>&Width=626 &Height=436 &Toolbar=0 &Status=0"><img src="images/facebook.jpg" /></a></body>

请帮我解决问题所在。

1 个答案:

答案 0 :(得分:1)

这是分享内容的旧方法。使用this plugin允许用户分享您网站上的内容... 要让Facebook提取正确的图像和标题以预览您的网站,请阅读此帮助页面关于open graph protocol ...它会向您显示您必须在网站上放置哪些元标记,以便Facebook可以创建正确的预览

取自open graph protocol -

<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:og="http://ogp.me/ns#"
  xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>The Rock (1996)</title>
<meta property="og:title" content="The Rock"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/>
<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>
<meta property="og:site_name" content="IMDb"/>
<meta property="fb:admins" content="USER_ID"/>
<meta property="og:description"
      content="A group of U.S. Marines, under command of
               a renegade general, take over Alcatraz and
               threaten San Francisco Bay with biological
               weapons."/>
...
</head>
...
</html>