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 have a facebook aplication which generates random images on the wall users post.

<?php
$images = array(
        0 => 'imagine1.jpeg',
        1 => 'imagine2.jpeg',
    );
    $image = $images[ rand(0,(count($images)-1)) ];
    $output = "<img src=\"images/".$image."\" alt=\"\" border=\"0\" />";
    print($output);
?>

<?php 
//At the time of writing it is necessary to enable upload support in the Facebook SDK, you do this with the line:
$facebook->setFileUploadSupport(true); 

//Create an album 
$album_details = array( 
        'message'=> 'Album desc', 
        'name'=> 'Album name' 
); 
$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'=> 'Photo message' 
); 
$file='http://worldofgothic.ro/app/images/'.$image; 

//Example image file 
$photo_details['image'] = '@' . realpath($file);


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

?>

The problem is here because this cod does not display image generated random.

$file='http://worldofgothic.ro/app/images/'.$image; 

    //Example image file 
    $photo_details['image'] = '@' . realpath($file);

Please help me.

share|improve this question
Photo upload done this way via the PHP SDK requires a local file name – but you are giving an HTTP URL instead … – CBroe Aug 1 '12 at 12:04
And what I can to do? – Rusu Raducu Aug 1 '12 at 12:14
Use a local file name instead of an HTTP URL …? – CBroe Aug 1 '12 at 12:16
And how can I do this? I am new to php .. – Rusu Raducu Aug 1 '12 at 12:18
If I operate POST link goes, but the image is small. This is the code to post where the link goes. <?php $attachment = array( 'message' => '', 'name' => 'Post title', 'picture' => 'sitehere.com/pathtoimages/'.$image, ' ); $facebook->api('/me/feed', 'POST', $attachment); ?> – Rusu Raducu Aug 1 '12 at 12:36
show 1 more comment

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.