After upload photo, how can i retrieve the photo on my apps?

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