进行简单的日历获取时接收以下错误 :
Expected response code 200, got 403
Version 3.0 is not supported.
代码看起来像:
誓言
$options = array(
requestScheme => Zend_誓言::REQUEST_SCHEME_HEADER,
version => 1.0 ,
signatureMethod => HMAC-SHA1 ,
consumerKey => $config[ consumer_key ],
consumerSecret => $config[ consumer_secret ]
);
/**
* Create HTTP Client object which adds OAuth Authorization
* headers to outbound requests.
*/
$this->_consumer = new Zend_誓言_Consumer($options);
$this->_token = new Zend_誓言_Token_Access();
$this->_http_client = $this->_token->getHttpClient($options);
日历查询
$calendarClient = new Zend_Gdata_Calendar(誓言::I()->getHttpClient());
print $calendarClient->getMajorProtocolVersion();
$query = $calendarClient->newEventQuery();
$query->setUser( default );
$query->setVisibility( private );
$query->setProjection( full );
誓言::I()->setRequestorId($query);
try {
$list = $calendarClient->getCalendarEventEntry($query);
var_dump($list);
} catch(Exception $e) {
var_dump($e->getMessage());
}
var_dump($calendarEventsFeed);
在 Zend_ Http_Client_Adapter_Socket 资源头下倾弃 $calenderClient 时:
["gdata-version"]=>
array(2) {
[0]=>
string(13) "GData-Version"
[1]=>
string(3) "3.0"
}
但获得主议定书Version () 返回 1 。