1

如果我使用 Facebook API 将照片发布到页面,它们会显示为单个故事。

$args = array(
        'message' => '',
);
$args["picture"] = '@' . realpath($file);
$ch = curl_init();

$url = 'https://graph.facebook.com/me/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);

如果我从 Facebook 发布,它们会正确显示为每张图片的单个故事。如何以编程方式执行此操作?

4

0 回答 0