FB api,可以通过应用程序创建的相册也被应用程序删除吗?

时间:2014-07-28 16:29:45

标签: facebook facebook-graph-api facebook-php-sdk

通过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'权限......我还需要什么,或者即使它是通过相同的应用程序创建的,也不可能删除相册?

0 个答案:

没有答案