[最佳答案] Of course you can using the Graph API. On the button click you just have to make a \POST call to /me/feed. Learn more about publishing a feed via Graph API and what all parameters are available here. Permission required: publish_stream Using PHP SDK: $response = $facebook->api( "/me/feed", "POST", array ( 'message' => 'This is a test message', 'link' => '{link}', 'picture' => '{picture}', 'caption' => '{caption}', 'description' => '{description}' ) ); Direc