I am use following methods to upload photo :
$args = array('message' => 'Photo Caption');
$args['image'] = '@' . realpath($file);
$data = $facebook->api('me/photos', 'post', $args);
print_r($data);
After success to upload photo, $data
return "Array ( [id] => 1.16874205038E+14 )"
.
How can i access the photo on my apps?