上传就像魅力一样,但我不希望它出现在时间轴或提要上。 我尝试在每个请求中添加no_story,并在以下代码中注释掉$ params:
foreach ($data['Ad']['Media'] as $medium) {
$file = $medium['tmp_name'];
$req = array(
'method' => 'POST',
'relative_url' => '/me/photos',
'message' => $data['Ad']['title'],
'attached_files' => 'file' . $count,
'no_story' => 1 //Also tried 'true'
);
//add this request to batch
$batch[] = json_encode($req);
$params['file' . $count] = '@' . realpath($file);
$count++;
}//foreach
$params['batch'] = '[' . implode(',', $batch) . ']';
//$params['no_story'] = true;
见下面的评论。
答案 0 :(得分:0)
我知道你可能不再需要答案,但是我遇到了同样的问题,经过大量的尝试和错误我想出来所以我会发布答案可能会有一个人面对这个问题
$req = array(
'method' => 'POST',
'relative_url' => '/me/photos',
'attached_files' => 'file' . $count,
'body' => 'no_story=1'
);