Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to upload an image through my application with Facebook Graph API to an album of my fan page. Although I provide the albumID like a parameter for uploading the image, it is uploaded in an album named to my application name Photos on my own profile. The album of the fan page stays empty. I tried also with sending the pageID of my fan page instead of albumID, but the result is the same. I thought there is a problem with access token but with same accessstoken i can post links to page.

The code I use for the upload is:

    $args = array(
        'access_token'  => $access_token,
        'message'       => "$baslik",
        "source" => '@' . realpath($file)
    );                      

$post_id = $facebook->api("/$page_id/photos","post",$args); 

Please give me ideas how can I upload the image to the fan page and not to my own profile album.

share|improve this question
I don’t see you providing an album id anywhere in your code. – CBroe Aug 20 '12 at 9:49
CBroe at this code i didn't. but instead of that $page_id i've written albumID but still same thing happened.here developers.facebook.com/docs/reference/api/page at photos section it says that we can publish with posting to PAGE_ID/photos but i'm unsuccessful at that – r10 Aug 21 '12 at 7:45
Do you have the right permissions? Are you trying to post photos as the page itself, or as a user? If the latter, do the page’s settings allow posts by users? – CBroe Aug 21 '12 at 8:47
I have right permissions. i am trying to post as page. I can share links as page with the same APP without any problem. Also i've tried to use a content creator and admin but still can't post – r10 Aug 21 '12 at 12:21
@r10: Have you solved this problem? – Mahantesh Oct 9 '12 at 12:56
show 2 more comments

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.