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.