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 want to create image uploader facebook app.

this is the source code:

<?php
require 'src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
  'appId'  => '290797324303275',
  'secret' => '***',
  'cookie' => true
));
$facebook->setFileUploadSupport(true); 
// Get User ID
$user = $facebook->getUser();  
if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}

// Login or logout url will be needed depending on current user state.
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl( array(
            'req_perms' => 'publish_stream,status_update'));
}

  $signed_request = $facebook->getSignedRequest();
  function parsePageSignedRequest() {
    if (isset($_REQUEST['signed_request'])) {
      $encoded_sig = null;
      $payload = null;
      list($encoded_sig, $payload) = explode('.', $_REQUEST['signed_request'], 2);
      $sig = base64_decode(strtr($encoded_sig, '-_', '+/'));
      $data = json_decode(base64_decode(strtr($payload, '-_', '+/'), true));
      return $data;
    }
    return false;
  }

  if($signed_request = parsePageSignedRequest()) {
    if($signed_request->page->liked) {
        echo "Hello!";
        $album_details = array(
                        'message'=> 'Album from APP',
                        'name'=> 'Album from APP'
                );
                $create_album = $facebook->api('/me/albums', 'post', $album_details);

                //Get album ID of the album you've just created
                $album_uid = $create_album['id'];

                //Upload a photo to album of ID...
                $photo_details = array(
                    'message'=> "This photo came from my APP"
                );

                $photo_details['image'] = '@' . realpath('smiley.jpg');

                $upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);

    } else {
               echo "Please like the page!";
    }
    }

?>

The app write "Hello" but image uploading is not work. Where is the mistake?

share|improve this question
What errors are you getting? I doubt anyone is going to read all your code and do the work for you. – relentless Feb 1 '12 at 21:32
8  
"Is not work" is not an error description. Do some debugging. – Lightness Races in Orbit Feb 1 '12 at 21:35

closed as not a real question by Lightness Races in Orbit, BK., ceejayoz, Jimmy Sawczuk, Sergio Tulentsev Feb 2 '12 at 3:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

It seems that the array $photo_details doesn't contain the valid access token:

$photo_details = array(
    'access_token'=> 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
    'message'=> "My personal message"
);
share|improve this answer

You did not get the correct permissions from the user with this call.

  $loginUrl = $facebook->getLoginUrl( array(
            'req_perms' => 'publish_stream,status_update'));

Read up https://developers.facebook.com/docs/reference/api/permissions on which permissions you might need to access/modify a user's photo albums.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:12

Not the answer you're looking for? Browse other questions tagged or ask your own question.