Gdata 签名请求错误:“未知授权标头”

发布于 2024-10-22 01:48:19 字数 695 浏览 3 评论 0原文

我在使用签名请求更新和删除事件时遇到问题。插入事件效果很好。但是,当更新和删除时,我收到“未知授权标头”401 错误。

对于所有三个操作,我首先像这样生成客户端:

$client = new Zend_Gdata_HttpClient();  
$client->setAuthSubPrivateKeyFile('certificates/gcalkey.pem', null, true);
$client->setAuthSubToken($session_token);
$gdataCal = new Zend_Gdata_Calendar($client);

要更新事件,我使用这个:

$eventOld = $gdataCal->getCalendarEventEntry($eventUri);

$eventOld->title = $gdataCal->newTitle('NEW NAME');
try {
    $eventOld->save();
} catch (Zend_Gdata_App_Exception $e) { print_r($e); exit; }

它给了我“未知的授权标头”错误。但使用未签名的请求的相同代码可以工作。

问题可能出在哪里?我尝试将 $eventUri 修改为 https 和 http,但似乎没有任何效果。

I have a problem with Updating and Deleting events using signed requests. Inserting events works just fine. But when Updating and Deleting I receive an "Unknown authorization header" 401 error.

For ALL three operations I first generate the client like this:

$client = new Zend_Gdata_HttpClient();  
$client->setAuthSubPrivateKeyFile('certificates/gcalkey.pem', null, true);
$client->setAuthSubToken($session_token);
$gdataCal = new Zend_Gdata_Calendar($client);

To Update an event I use this:

$eventOld = $gdataCal->getCalendarEventEntry($eventUri);

$eventOld->title = $gdataCal->newTitle('NEW NAME');
try {
    $eventOld->save();
} catch (Zend_Gdata_App_Exception $e) { print_r($e); exit; }

And it gives me the "Unknown authorization header" error. But the same code, using unsigned requests, works.

Where might be the problem? I tried modifying $eventUri to both https and http, but it seems it does not have any effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦开始←不甜 2024-10-29 01:48:19

我也收到此 401 错误消息,以相同的方式创建客户端和服务。它可以检索日历列表,但在检索事件源时失败。

这以前对你有用吗? 尚未正式支持它。

I've been getting this 401 error message too, creating the client and service the same way. It can retrieve a list of calendars, but fails when retrieving an event feed.

Has this worked for you before? It might not be officially supported yet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文