zend gdata picasa php api停止工作
作者:互联网
我已经使用Zend Gdata几年了.
但是,今天,当我未更改的代码执行以下命令时
$query = $this->gp->newAlbumQuery();
我收到以下错误
exception 'Zend_Gdata_App_HttpException' with message 'Expected response code 200, got 403 Authorization required' in /shared/zend/ZendFramework-1.12.13/library/Zend/Gdata/App.php:717 Stack trace: #0 /shared/zend/ZendFramework-1.12.13/library/Zend/Gdata.php(221): Zend_Gdata_App->performHttpRequest('GET', 'https://picasaw...', Array, NULL, NULL, NULL) #1 /shared/zend/ZendFramework-1.12.13/library/Zend/Gdata/App.php(883): Zend_Gdata->performHttpRequest('GET', 'https://picasaw...', Array)
我认为这是因为身份验证失败.我检查了一下,我的凭据都还不错,以下内容成功通过身份验证,无一例外
$client = Zend_Gdata_ClientLogin::getHttpClient($this->config['username'],
$this->config['password'],
Zend_Gdata_Photos::AUTH_SERVICE_NAME);
我看到Zend Gdata仍在1.12.13版本上.但是,最近发布日期为20/05/2015.因此,我使用此新版本进行了更新.但是错误仍然相同.
因此,我所知道的是我已通过身份验证,但是newAlbumQuery方法引发了上述异常.
Zend Gdata是否还有其他人遇到此问题?有没有人找到修复程序或解决方法?
解决方法:
Zend_Gdata使用ClientLogin(自2012年4月20日起已弃用,并于2015年4月20日关闭).此代码将不再起作用,您需要切换到使用Oauth2.
标签:gdata,google-api,picasa,zend-framework,php 来源: https://codeday.me/bug/20191120/2042542.html