发生错误:不支持的发布请求。我创建了一个 fb 应用程序,允许用户单击按钮(此按钮在我的应用程序中)向应用程序用户发送消息并通知用户接收器他有来自应用程序的通知。我不知道我是否正确实施了它。我真的需要一些关于这个问题的建议和指导谢谢......
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
var accessToken = response.authResponse.accessToken;
FB.api('/'+254111161401649+'/notifications?'+accessToken+'&template=NewPosted&href=http://apps.facebook.com/lglinktest/', 'POST', {}, function (response) {
if (!response || response.error) {
console.log('Error occured:' + response.error.message);
}else{
console.log('Post ID: ' + response.id);
}
});
}
});