1
我想與FB.ui共享一個鏈接,所以我將獲得成功/失敗的回調 ,但FB.ui不允許選擇共享的位置(「」時間表」, 「一組在」 ....)像老sharer.php
做facebook分享ui - 共享一組
見screenshot-
我的代碼使這個彈出:
有沒有辦法讓新的fb.ui
彈出窗口允許像老一樣共享「一個組」?
這是我的代碼:
FB.ui(
{
method: 'feed',
name: 'some name',
link: 'http://some url',
picture: 'http://some image',
caption: "some text",
description: "some description"
},
function(response) {
if (response && response.post_id) {
console.log('Post was published.');
} else {
console.log('Post was not published.');
}
}
);
「共享」對話框絕對有一個目標選項:「共享對話框允許用戶將個人故事發布到他們的時間線,朋友的時間軸,羣組或私人消息中,這不需要Facebook登錄或任何擴展權限,因此這是在網絡上啓用共享的最簡單方法。「 – Ripside 2016-06-22 15:48:41