Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以创建一个 PHP 脚本来将图像从我的服务器上的文件夹复制到 Facebook。我只设法将一张图片从 php 脚本上传到我想要的相册。我现在想将图像文件复制到所需的相册中。
有没有文献可以指导我。
是的,您可以发送请求 Facebook API 以上传本地存储的照片。当然是在您的专辑中(之前创建的)。
$facebook->setFileUploadSupport(true); $args = array('message' => 'Photo Caption'); $args['image'] = '@' . realpath($FILE_PATH); $data = $facebook->api('/me/photos', 'post', $args); print_r($data);