我在使用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) );