0

エントリを削除しようとすると、エラーが返されますか?

エントリを削除するためにdeleteメソッドを呼び出すだけではありませんか!?

$this->client = Zend_Gdata_ClientLogin::getHttpClient($this->admin_user, $this->admin_pass, 'cp');
$this->client->setHeaders('If-Match: *');
$this->gdata = new Zend_Gdata($this->client);
$this->gdata->setMajorProtocolVersion(3);

$feed = $gdata->getFeed($query);
foreach($feed as $entry){
    $entry->delete();
}

エラー:

ERROR: Expected response code 200, got 403
If-Match or If-None-Match header or entry etag attribute required
4

1 に答える 1

2

ファイル App.php を編集し、538 行目 (少なくとも私の場合) を編集します。これは関数内にあり、次のようにprepareRequest()変更します。

if ($method == 'DELETE') {
    $rawData = null;
}

これに

if ($method == 'DELETE') {
    $rawData = null;
    $headers['If-Match'] = '*';
}
于 2012-09-07T11:15:50.443 に答える