我正在使用Facebook ui分享网址。我正在尝试在成功分享事件时提出事件,而事实并非如此。响应总是为空,所以我不知道它是否已被共享。
这是我的回调函数:
function(response) {
console.log(JSON.stringify(response.post_id));
if (response && response.post_id) {
//console.log('Posting completed.');
var Sharesuccess = "Share_Sucess";
} else {
//console.log('Error while posting.');
var NotShared = "Not_Shared";
}
}