Post to facebook page wall as a page
问题 I want to post to facebook page wall as a page using PHP. I've got access_token by below links. https://graph.facebook.com/oauth/authorize?type=user_agent&client_id=123456789&redirect_uri=http%3A%2F%2Fmysite.net&scope=publish_stream,manage_pages,offline_access https://graph.facebook.com/me/accounts?access_token=... I'm using this simple code: $appid = ""; $secret = ""; $pageid = ""; $access_token = ""; require_once("facebook-php-sdk/src/facebook.php"); $facebook = new Facebook(array( 'appId'