Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I keep getting:

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

require_once("resources/facebook_sdk/facebook.php");

    $app_id       = 'appid';
    $app_secret   = 'appsecret';


    $facebook = new Facebook(array(
        'appId' => $app_id,
        'secret' => $app_secret,
        'cookie' => true
    ));

    $user = $facebook->getUser();
    if($user)
    {

        $access_token=  $facebook->getAccessToken();

    }

    else {

        $loginUrl = $facebook->getLoginUrl(array(
            'canvas' => 1,
            'fbconnect' => 0,
            'scope' => 'offline_access,read_stream,user_photos,user_videos,publish_stream,manage_pages'
        ));
        echo ("<script> top.location.href='".$loginUrl."'</script>");
    }




    $req =  array(
        'access_token' => $access_token,
        'name' => 'My wall post',
        'message' => 'tralalala',
        'caption' => "www.mysite.com",
        'link' => 'http://www.mysite.com',
        'description' => 'Wall post',
        'picture' => 'http://farm6.static.flickr.com/1111/some-pic.jpg',
        'actions' => array(array('name' => 'My Site',
            'link' => 'http://www.mysite.com'))
    );

    print_r($req);
    $res = $facebook->api('/pageid/feed' ,'post',$req);
    if ($res) echo "succes";
    else echo "fail";
    print_r($res);

Any ideas what I'm doing wrong, publish stream permission is given?

share|improve this question

1 Answer

up vote 1 down vote accepted

This answer is taken in to consideration that you have all rights of server to upload on Facebook.Checkout some of links below for more information,

Facebook API OAuthException: (#200)

Facebook Open Graph API returns: (#200) Requires extended permission: publish_actions

Uncaught OAuthException: (#200), when trying to post on wall

Multiuser event invite graph api fails Permissions Error:200 OAuthException

You have give all permission which you define in scope,

'scope'=>'offline_access,read_stream,user_photos,user_videos,publish_stream,manage_pages';

may help you.

share|improve this answer
@Phoenix_yay can you just write publish_stream in scope & check what will be done? – BANG Feb 18 at 14:14
@Phoenix_yay can you solved this issue or find some problem, my answer help you or not? – BANG Feb 19 at 5:58
It was local server issue, so its resolved thank you anyway. – Phoenix_yay Feb 19 at 13:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.