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.

We've created app, that allows users to upload videos to "Community page" of the app. Video uploading works, but when user tries to fetch data about uploaded movie GraphAPI returns:

{
  "error": {
    "message": "(#200) Permissions error",
    "type": "OAuthException",
    "code": 200
  }
}

This is flustrating, because of correct setting of Access Token, privileges (user_video).

Code to ask about video data is:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_VERBOSE, false);
curl_setopt($ch, CURLOPT_POST, false);
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/".$id."?access_token=".$at);
$data = curl_exec($ch);

Where $id is Video ID, user get when it uploads. It's stored in database and used to fetch data later - after conversion (long live access_token). $at is user long live access_token.

Anyone know's what it's all about? Movie is visible on community profile (as post and in movie gallery) but app cannot fetch data or even display movie at all. I need to fetch only picture of a movie.

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.