I have the following code to upload image to my photos
$args = array('message' => 'Photo Caption');
$args['image'] = '@' . realpath('http://sawalpk.com/storyboard_server/outputImage.png');
$data = $facebook->api('/me/photos', 'post', $args);
print_r($data);
If I put the image as realpath('someImage.png')
It works. Remember the someImage.png
is found the the same directory. While with the url of an external image it do not uploads and returns no data to debug. Any guru here to help me. Thanks in advance.