(#200)用户没有授权应用程序执行此操作facebook php api错误


(#200) The user hasn't authorized the application to perform this action facebook php api error?

我正在使用以下代码,以便发布到facebook页面,但我得到这个错误:

(#200) The user hasn't authorized the application to perform this action

我得到manage_page权限对话框,我点击确定,一切都很好,所以我不明白为什么我不能发布到facebook页面!

这是我的代码:

<?php
 include_once 'inc/facebook.php';
 $appId = '000000000000000';
 $secret = '00000000000000000000000';
 $returnurl = 'https://mrdomain.com';
 $permissions = 'manage_pages, publish_stream';
 $fb = new Facebook(array('appId'=>$appId, 'secret'=>$secret));
 $fbuser = $fb->getUser();
 if($fbuser){
    if(isset($_POST['msg']) and $_POST['msg']!=''){
        try{
            $message = array(
                'message' => $_POST['msg']
            );
            $posturl = '/'.$_POST['pageid'].'/feed';
            $result = $fb->api($posturl,'POST',$message);
            if($result){
                echo 'Successfully posted to Facebook Wall...';
            }
        }catch(FacebookApiException $e){
            echo $e->getMessage();
        }
    }
    try{
        $qry = 'select page_id, name from page where page_id in (select page_id from page_admin where uid ='.$fbuser.')';
        $pages = $fb->api(array('method' => 'fql.query','query' => $qry));
        if(empty($pages)){
            echo 'The user does not have any pages.';
        }else{
            echo '<form action="" method="post">';
            echo 'Select Page: <select name="pageid">';
            foreach($pages as $page){
                echo '<option value="'.$page['page_id'].'">'.$page['name'].'</option>';
            }
            echo '</select>';
            echo '<br />Message: <textarea name="msg"></textarea>';
            echo '<br /><input type="submit" value="Post to wall" />';
            echo '</form>';
        }
    }catch(FacebookApiException $e){
        echo $e->getMessage();
    }
 }else{
    $fbloginurl = $fb->getLoginUrl(array('redirect-uri'=>$returnurl, 'scope'=>$permissions));
    echo '<a href="'.$fbloginurl.'">Login with Facebook</a>';
 }
?>
在我可以发布到facebook页面之前,我还需要做什么吗?

从文档来看,您正在使用贬值的权限,请尝试publish_actions而不是publish_stream