如果我使用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发布,它们就会正确地显示为每张图片的单个故事。 如何以编程方式执行此操作?