我想使用 facebook api 将图像上传到 facebook 相册,如果发现使用的文件来自 pc,我会搜索很多。我想将图像上传到 facebook 相册以及我想从网站获取的图像路径?
$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);
可以像我上面提到的那样给出文件路径吗?