i am trying to upload images to page ablbum with facebook graph
$facebook->setFileUploadSupport(true);
$args = array('message' => 'Photo Caption',
'source' => '@' . realpath(ABSPATH.$image_realpath)
, 'access_token' => $page_access_token);
$data = $facebook->api('/'. $album_id . '/photos/', 'post', $args);
print_r($data);
but it gives me this exeception
Fatal error: Uncaught OAuthException: (#240) This user isn't allowed to upload photos to this object's wall
i am the admin of the page and i added manaege_pages, publish_stream, share_item, offline_access permissions to my app and still having this problem