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've been trying this for the past few days but it seems I'm missing something: Well, I'm able to upload a photo to a users profile with the following code (I'm using cakephp with Nick Baker's facebook plugin):

$Fb = new FB();
      FB::setFileUploadSupport(true);
   $token = FB::getAccessToken();

//upload photo
$file= IMAGES.'badge.png';

$attachment = array(
    'access_token'=> $token,
    'name' => 'Album name',
    'source' => '@'.$file
                );
    $fb_photo = FB::api('/me/photos','POST', $attachment);

I am able to upload the photo to a new album and I would like to redirect the user to set the uploaded photo as their facebook profile profile. I followed an answer posted on Stack Overflow but it appears i'm still missing something. I'm able to get the uploaded photo id using $fb_photo['id'] but i'm not able to get the photo link (i tried $fb_photo['link'] as suggested in a comment but it returns NULL). What am I doing wrong, or what I should I do to achieve a successful redirect? Thank you.

share|improve this question

1 Answer

The callback to posting a photo is just the Photo ID, you also need to then request the photo's full details back from the API,

so after

$fb_photo = FB::api('/me/photos','POST', $attachment);

You need to do something like

$fb_photo_details = FB::api('/'.$fb_photo);
$link = $fb_photo_details['link'];
share|improve this answer

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.