We're making a digital radioplayer where listeners can send messages to the studio. The idea is that the user will fill in a textarea on the website, pushes the button and the message gets posted on the studio's Facebook wall where the DJ's are monitoring it.
This works perfectly fine for user walls but when I try to post to a page wall, I get this error:
"(#200) The user has not granted the application the permission to automatically publish feed stories"
Am I forgetting something? Or is this impossible? Does the user need to like the page? Or is there a setting needed to be changed as the page Admin?
I created a test page, I liked it and been testing with my account. I also checked the box "Anyone can post on the timeline of x Page". But no help.
Here is the simplefied code:
function facebookPost(target,content) {
FB.api('/'+target+'/feed','post',{
message:message
},function(res){
console.log(res);
}
}
I've been working with the API for a while now, but this one really scratched my head.
Thanks in advance.
EDIT: I discovered that the error only raises when the page admin is posting on his own page. When I add 'manage_pages' to the perms I don't get the error but the post is in name of the page, like a status update.
So it works for other users, but only if they haven't 'liked' the page before posting, else the page admin is not notified of a new post, he cannot see it, only the user and his friends can. (this is a problem because the DJ's must see those posts)
Has anyone experience this kind of behaviour before?