2010-06-09 88 views
1

我正在使用Facebook分享器分享我的網站到Facebook的產品。我試過所有的方法來做到這一點..但我不知道問題在哪裏。在facebook上分享產品的問題

當我點擊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> 

plz幫幫我問題在哪裏。

回答

1

這是共享內容的舊方法。使用this plugin允許用戶共享您網站上的內容... 對於Facebook提取正確的圖像和標題以預覽您的網站閱讀幫助頁面關於open graph protocol ...它顯示了您確切的meta標籤,你必須放置在您的網站上,以便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> 
+0

我現在正在使用新的格式只有第一個圖像共享?因此,我在標題中添加了10個具有相同標記的圖像,但只添加了不同的url 。只顯示第一個,任何提示? – Tom 2015-07-04 12:37:03