通过app创建albm,然后尝试通过以下代码删除它:
public function delete_album($id)
{
/* make the API call */
$request = new FacebookRequest(
$this->session,
'DELETE',
'/'.$id
);
$response = $request->execute();
$graphObject = $response->getGraphObject();
/* handle the result */
}
但错误显示:
'(#200) Application does not have the capability to make this API call.'
我有'publish_actions'权限......我还需要什么,或者即使它是通过相同的应用程序创建的,也不可能删除相册?