Created By
Andrey Grunyov
07/03/2012 2:02pm

Subscribers (7)

BugsCan not post message to User's Page as User

  • Status: Assigned
  • Priority: High
  • Updated: July 5, 2012 at 1:58pm
Latest response from Facebook
Lei Lei
Thanks for the report. We are looking into this.
Status changed to Assigned · Priority changed to High
I have a test Page and I'm admin of this page.
I have unchecked "Posting Preferences" checkbox (in Page Edit Info->Your Settings) for allowing User to post message on page as User or as Page. My application asks all required permissions for posting messages to Users Page (manage_pages, offline_access, publish_stream, etc) and then storing access_token to the database.

When my application tried to post message to page as Page - it works fine But when my application tried to post message to page as User - it still post as Page - Why it happen?
here is a simple code
$facebook->setAccessToken($user_access_token);
$facebook->api("/$page_id/feed", 'post', array(
'access_token' => "$user_access_token",
'message' => 'test'
);

BTW it is possible to reproduce via Graph Explorer tool
4 people can reproduce this issue by following these steps
Repro