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!' ));