我正在建設應用程序有功能,當使用分享在Facebook上他們將得到Facebook共享返回空數據甚至用戶登錄應用程序
點從這個動作。通過檢查這一點,我會檢查如果Facebook響應POST_ID
,但對我來說空車返回時登錄的用戶的應用程序就像斯克羅普
「publish_actions」。我四處搜尋,但我不能看到任何幫助?這是我的
代碼
FB.login(function(response) {
if (response.authResponse) {
console.log(response)
FB.ui({
method: 'share',
href: url_here,
}, function(response) {
console.log(response);
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, { scope: 'publish_actions', return_scopes: true });
有什麼建議?
感謝。
你的控制檯說什麼? – Rayon
它顯示空陣列 – user3610632