I'm trying to build a commenting system for posts that are synchronized between Facebook and a website.
As of now, everything works fine, except when I'm logged in with a user that is an admin of the page, it posts as the page, no matter what I try to do.
I first went on my page settings and unchecked "Always comment and post on your page as Testing Page, even when using Facebook as X."
My code is as following:
// fb-id is usually POST_ID
FB.api($comments.data('fb-id') + '/comments', 'post', {
message: $('textarea', $comments).val(), // this works fine
from: FB.getUserID() // no effect
}, function(){
// callback here
});
I've even tried to revoke my permissions doing a DELETE on /me/permissions and get a new token with just publish_stream, but still, it posts as the page.
I just tried using the Graph API Explorer, from there, if I post to POST_ID/comments using an access token with just publish_stream, it also posts from as my page, and not as my logged in user.
Also just tried the FB PHP SDK, with the same parameters, different way to get the access_token, and same thing happens.
Anyone knows how I force FB to post the comment as the logged in user? Or is this a Facebook bug? I've saw 1-2 other person online that was complaining about this problem, but no fix.
EDIT The bug report at Facebook got accepted and assigned. This question can be closed now, as it is a valid bug.