2012-05-15 74 views
0

我有產品列表頁面。我想顯示每個產品的分享鏈接,我想分享個別產品圖片。我怎樣才能做到這一點 ?如何在臉書分享個人產品圖片

我相信Meta並沒有幫助,因爲我需要分享個人產品形象。

回答

0

創建自己的按鈕,每一個圖像,一個onclick從JS SDK https://developers.facebook.com/docs/reference/javascript/FB.ui/調用FB.UI傳遞您要的消息,以便爲每個圖像

變量中的HTML可以像類似於:

然後使用庫如jQuery你可以有以下腳本與EXA

$('img').click(function(){ 
     var $this = $(this); 
     var obj = { 
     method: 'feed', 
     link: $this.data('uri'), 
     picture: $this.attr('src'), 
     name: $this.attr('title'), 
     caption: 'Your caption here', 
     description: 'Your description here.' 
    }; 
    function callback(response) { 
    alert("Post ID: " + response['post_id']); 
    } 

    FB.ui(obj,callback); 
}); 

更多信息mple是在這裏:

https://developers.facebook.com/docs/reference/dialogs/feed/

,你可以玩的JS-SDK這裏

https://developers.facebook.com/tools/console/

+0

你能解釋一下遠一點。 – Gowri

+0

我已更新,但我試圖給你的概念,而不是代碼 – TommyBs

+0

是的,它是很高興看到這個標記與此 –