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 don't know what is the issue with this code trying to upload image using Facebook php SDK and i want to upload image from my server with a single click by user? Please help.

include('class.Facebook.php');

$config = array();
$config[‘appId’] = 'my_id';
$config[‘secret’] = 'mysecret';
$config[‘fileUpload’] = true; // optional
$facebook = new Facebook($config);

$facebook->setFileUploadSupport(true);

$img = $img = realpath('./images/img.png');;

$photo = $facebook->api('/me/photos', 'POST',array( 'source' => '@' . $img, 'message' => 'Photo uploaded via the PHP SDK!'  ));
share|improve this question
possible duplicate of Upload Photo To Album with Facebook's Graph API – phwd Oct 24 '12 at 13:15

closed as not a real question by CBroe, phwd, jonsca, user97693321, Andy Hayden Oct 24 '12 at 13:57

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

Hello dude this code works for me :-)

First take the extended permission of publish_stream. Then the following code will help to upload the photo to wall

$attachment = array('message' => 'The message that you want to display with picture',

'name' =>'Your Application Name',

'caption' => "Caption Under the picture",

'link' => 'http://apps.facebook.com/yourapplication/',

'description' => 'Some description with picture about picture or your application',

'picture' => 'http://www.yoursite.com/somefolder/images/'.$Picturetoupload,

'method'=>'stream.publish',

'actions' => array(array('name' => 'Your Application Name',

'link' => 'http://apps.facebook.com/Yourapplicationlink/')));

 $uid=$fbme['id'];  // id of the user 

 $result = $facebook->api('/'.$uid.'/feed/','post',$attachment);
share|improve this answer

This question has been asked a dozen times, and there are also dozens of answers, but in your case I believe it's not working because you're not using an absolute path to the file and the key should be image instead of source.

Try this: (assuming the file is relative from where this code is placed)

include('class.Facebook.php');

$config = array();
$config['appId'] = 'my_id';
$config['secret'] = 'mysecret';
$config['fileUpload'] = true; // optional
$facebook = new Facebook($config);

$facebook->setFileUploadSupport(true);

$img = realpath('./images/img.png');

$photo = $facebook->api('/me/photos','POST', array(
    'image' => '@' . $img, 
    'message' => 'Photo uploaded via the PHP SDK!'
));

EDIT

Other possible solution:

include('class.Facebook.php');

$config = array();
$config['appId'] = 'my_id';
$config['secret'] = 'mysecret';
$facebook = new Facebook($config);

$img = 'images/img.png';

$photo = $facebook->api('/me/photos','POST', array(
    'name' => 'Caption for your image',
    'url' => 'http://yourhost/path/to/' . $img, 
    'message' => 'Photo uploaded via the PHP SDK!'
));
share|improve this answer
still not working.Thanks for your reply – KNS Oct 23 '12 at 5:27
Have you authenticated the API? – Koen. Oct 23 '12 at 14:58
Hi @KNS, I've updated my answer with another solution. – Koen. Oct 24 '12 at 11:54

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