我正在使用Graph API制作电报自动注释机器人,但输出显示media_id中存在错误。
$url = "https://graph.facebook.com/1234567890/comments?message=Hi+how+u";
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query(array('access_token' => 'access_token')));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
file_put_contents("res.json", $response);
我希望输出如下:
{
"id": "1234567890"
}
但它说:
{“错误”:{“消息”:”(#33)该对象不存在或不支持此操作”,“类型”:“ OAuthException”,“代码”:33,“ fbtrace_id”:“ GQZLb8cu19p“}}