FB.ui({
method: 'feed',
type: 'video',
caption: text,
link: url,
description: text,
source: url,
picture: pictureEncode
}, function(response){
if (response && !response.error_code) {
console.log("OK: "+JSON.stringify(response));
} else {
console.log("Not OK: "+JSON.stringify(response));
}
});
我試圖從我的視頻中分享YouTube視頻並且它正在工作。但我需要確定用戶是否取消了視頻共享。在迴應中我沒有得到任何有用的價值。他們如下所示。未提供任何詳細信息的Facebook API共享響應
構造 : 功能對象() hasOwnProperty : 函數hasOwnProperty() isPrototypeOf : 功能isPrototypeOf() propertyIsEnumerable : 功能propertyIsEnumerable() 的toLocaleString : 功能的toLocaleString() toString : function toString() 的valueOf : 功能的valueOf() defineGetter : 功能defineGetter() defineSetter : 功能defineSetter() lookupGetter : 功能lookupGetter() lookupSetter : 功能lookupSetter() 得到原 : 功能原() 設置原 : 功能原()
所以請幫助我這個找出這個問題。謝謝
看到我的回答如下。請問爲什麼你需要知道他是否取消了?我在答案中加入了一些重要的信息。 – luschn
我想獲得回叫是用戶分享了視頻或者他取消了。 –