Can't request Facebook Login API permission “publish_actions” even for primary administrator
- 阅读更多 关于 Can't request Facebook Login API permission “publish_actions” even for primary administrator
问题 I'm implementing Facebook login with an extended permission publish_actions using PHP SDK. It shows a message in the login dialog even if I signed in with my primary administrator account: Submit for Login Review. Some of the permissions below have not been approved for use by Facebook I have the following code snippet to post to the user timeline. try { $response = (new FacebookRequest( $session, 'POST', '/me/feed', array( 'message' => 'This is test post.' ) ))->execute()->getGraphObject();