i want to upload image to facebook album using facebook api, i search alot about it if find out that the file used is from the pc.. i want to upload image to facebook album and the image path i want to get from a website ?
$File_path='http://example.com/sample.jpg';
$args = array('message' => 'Photo Caption');
$args['image'] = '@' . realpath($FILE_PATH);
$data = $facebook->api('/'. $ALBUM_ID . '/photos', 'post', $args);
print_r($data);
is that possible to give a file path like i mention above?