English 中文(简体)
Zend Gdata 日历 API 返回“ 3. 0 版本不支持 。 ”
原标题:Zend Gdata Calendar API returns "Version 3.0 is not supported."

进行简单的日历获取时接收以下错误 :

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 。

最佳回答

解决方案是, 每当您需要更改 GData 版本时, 在 HTTP 客户端上设置标题 () 。 我确信为此有特定的方法, 但此方法有效 。

// $http_client is Zend_Oauth_Token_Access()::getHttpClient()
$http_client->setHeaders( GData-Version ,  2.0 );
问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签