2011-09-08 45 views
1

可能重複:
How does Facebook Sharer select Images?如何判斷Facebook發佈鏈接到我的網頁時提供給用戶的圖像?

當用戶帖子到我的網頁的鏈接分享到Facebook,Facebook的掃描我的網頁/網站,並提供了在該網頁上的一些圖片。用戶選擇一個與fb帖子關聯。

我可以控制我的網頁上的哪些圖像將提供給用戶在帖子中使用嗎?

看起來很接近的一個功能是Open Graph Tags,http://developers.facebook.com/docs/opengraph/,但它似乎並不足以滿足我的特殊需求,因爲它似乎只允許一個圖像來表示該頁面。

回答

1

是的,你可以通過生成一個「超級代理」來實現這一點,這將創建基於動態信息您的應用程序提供的Facebook共享所需的元數據,你可以檢查這個工作鏈接:http://concursos.genommalab.com/soyflaca/我做了這個網站,因爲所有的內容來自單個頁面共享每一個項目都有一個自定義的一個我使用深層鏈接技術,並將其發送到我的超級代理,生成的靜態內容到facebook sharer.php,這裏是代碼:

<?php 
    // get our URL query parameters 
    $current_path = 'http://' . dirname($_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']); 
    $title = $_GET['t']; 
    $diet_id = $_GET['diet_id']; 
    $desciption = $_GET['desc']; 
    $image_thumb = $_GET['thumb']; 
    $shared_url = $_GET['surl']; 
?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title><?php echo $title;?></title> 
    <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
    <meta name="title" content="<?php echo $title;?>" /> 
    <meta name="description" content="<?php echo $desciption;?>" /> 
    <meta http-equiv="refresh" content="1;URL=<?php echo $current_path . '/#diet_' . $diet_id; ?>" /> 
    <link rel="<?php echo $image_thumb; ?>" /> 
</head> 
<body> 
<img src="<?php echo $image_thumb; ?>" alt="<?php echo 'Imagen de ' . $title; ?>" width="112" height="112" style="visibility: hidden;"/> 
</body> 
</html> 

也許你想要做的是增加可供Facebook的圖片,像這樣的列表...

<link rel="images/example_1.jpg" /> 
<link rel="images/example_2.jpg" /> 
<link rel="images/example_3.jpg" /> 
<link rel="images/example_4.jpg" /> 
<link rel="images/example_5.jpg" /> 

Right inside <head> </head>標籤。請記住,這是由Facebook掃描sharer.php

相關問題