我正試圖在用戶的時間軸上發佈操作。我有2個用戶,開發者和普通用戶(在應用程序不registred),我可以張貼開發者頁面上,但不能正常用戶擴展權限publish_actions
這裏我的代碼
FB.api('/me/MYNAMESPACE:MYACTION?BYOBJECT=' + link, 'post',
function(response) {
var msg = 'Error occured';
if (!response || response.error) {
if (response.error) {
msg += '\n\nSomething wrong \n\n' + response.error.message;
}
alert(msg);
}
else {
alert('Done! Please check your activity log');
}
});
「鏈接」被編碼的URL sendbox模式關閉並且擴展權限中的「publish_actions」被檢查
您是否想代表「開發者用戶」發佈「普通用戶」時間表? – haynar
您的行爲是否已獲批准? – CBroe