我已经完成了一个将照片上传到默认应用程序相册的 Facebook 应用程序。我发现上传后,用户个人资料上会显示一条帖子,上面写着“Smi在相册xxxxx中添加了10张新照片。”。是否可以将上面的消息编辑为“Smi 通过 xxxapplication 向相册添加了 1 张新照片”?我正在使用 Graph api 上传照片。我用来上传的代码是
$file = "@".realpath($image);
$args = array(
'message' => '',
"access_token" => $access_token,
"image" => $file
);
$data = $facebook->api('/me/photos', 'post', $args);