如何检索通过 Facebook 的图 api 上传的图像的 URL

发布于 2024-09-25 01:06:26 字数 440 浏览 3 评论 0原文

我已使用以下代码成功将图像上传到用户的相册:

    $ch = curl_init();
    $url = 'https://graph.facebook.com/'.$uid.'/photos?access_token='.$token;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
    $data = curl_exec($ch);

谁能告诉我如何检索该图像的公共链接?

I've successfully uploaded an image to user's album using the following code:

    $ch = curl_init();
    $url = 'https://graph.facebook.com/'.$uid.'/photos?access_token='.$token;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
    $data = curl_exec($ch);

can anyone tell me how I would then retrieve the public link to that image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自由如风 2024-10-02 01:06:26

照片上传成功返回上传图片的id。使用该 ID 请求有关图片的扩展信息 (graph.facebook.com/[photoid]?access_token=...)

Succesful photo upload returns id for the uploaded picture. Use that id to request extended info about the picture (graph.facebook.com/[photoid]?access_token=...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文