可能重复:
通过 API 调用删除 FB 相册
尽管我可以从我的相册中删除照片(我对其进行了测试并且它工作正常),但我在使用 Facebook 图表删除相册时遇到了问题。
为什么我可以删除照片而不能删除相册?这是 Facebook 图形 API 的限制还是需要特定权限?
我在删除对象时使用此代码,它适用于照片
$graph_url = 'https://graph.facebook.com/'.$object_id.'?method=DELETE&'
. 'access_token='. $access_token;
$opts = array('http' =>
array(
'method' => 'DELETE',
'header' => 'Content-type: application/x-www-form-urlencoded',
'ignore_errors' => true
)
);
$context = stream_context_create( $opts );
$result = json_decode( file_get_contents( $graph_url, false, $context) );