我正在尝试在用户的时间线上发布一个操作。我有2个用户,开发人员和普通用户(未在应用程序中注册),我可以在开发人员页面上发布,但不能普通用户
下面是我的代码
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');
}
});"link“是编码的,url sendbox模式已关闭,并检查了扩展权限中的权限"publish_actions”。
发布于 2012-10-10 23:31:22
如果该操作未被批准,则不能以普通用户的身份发布。只有开发者才能做到这一点。
提交您的操作以供审批。
https://stackoverflow.com/questions/12822904
复制相似问题