ZF-12504: delete tag in picasa photo error
Description
When use the function for delete tag in picasa photo
deleteTag($client, $user, $album, $photo, $tagContent);
this happens:
Fatal error:
Uncaught exception 'Zend_Gdata_App_InvalidArgumentException' with message 'You must specify an URI to which to post.' in Zend/Gdata/App.php:623
Stack trace:
#0 Zend/Gdata.php(219): Zend_Gdata_App->performHttpRequest('DELETE', NULL, Array, '', NULL, NULL)
#1 Zend/Gdata/App.php(957): Zend_Gdata->performHttpRequest('DELETE', NULL, Array, '', NULL, NULL)
#2 Zend/Gdata/Photos.php(572): Zend_Gdata_App->delete(NULL)
#3 public_html/autenticate_zend.php(130): Zend_Gdata_Photos->deleteTagEntry(NULL, false)
#4 public_html/autenticate_zend.php(83): deleteTag(Object(Zend_Gdata_HttpClient), 'google account', 'password', '576764976912403...', 'hola mundo')
#5 {main} thrown in Zend/Gdata/App.php on line 623
Comments
Posted by Frank Brückner (frosch) on 2013-01-10T08:16:18.000+0000
{quote}
This is the problem: You need the first parameter for {{Zend_Gdata_Photos::deleteTagEntry()}}.
{quote}
public function testPreparingRequestWithoutData() { $this->assertEquals( array( 'method' => 'POST', 'url' => null, 'data' => null, 'headers' => array( 'x-http-method-override' => 'DELETE', ), 'contentType' => 'application/atom+xml', ), $this->service->prepareRequest('DELETE', null, array(), '', null, null) ); } ``` Tests passed
Posted by Rodolfo Van Kurczyn (rkurczyn) on 2013-01-11T18:53:09.000+0000
in the directory Zend/demos/Zend/Gdata/Photos.php
we have the following two functions
function addTag($client, $user, $album, $photo, $tag) { $photos = new Zend_Gdata_Photos($client);
}
function deleteTag($client, $user, $albumId, $photoId, $tagContent) { $photos = new Zend_Gdata_Photos($client);
}
I probe the first function successfully. The second function fail.
Posted by Ralph Schindler (ralph) on 2013-04-05T16:07:03.000+0000
This issue has been closed on Jira and moved to GitHub for issue tracking. To continue following the resolution of this issues, please visit: https://github.com/zendframework/zf1/issues/47