0

我正在使用 node-v0.8.21。我正在使用 azure node.js sdk 来处理 azure 表存储操作。它在大多数情况下都可以正常工作,但是当我的表的 PartitionKey 中有空格时,更新该实体会引发错误,如下所示。

{ [Error: [object Object]]
  code: 'AuthenticationFailed',
  message:
   { _: 'Server failed to authenticate the request. Make sure the value of Autho
rization header is formed correctly including the signature.',
     '$': { 'xml:lang': 'en-US' } } }

关于如何修复它的任何想法?

4

1 回答 1

0

由于 node.js 版本以及一些缺少的 azure 节点模块,问题正在发生。我安装了 0.8.4 node.js 版本并使用 npm install azure 命令重新安装了 azure 节点模块,它开始正常工作。

于 2013-10-09T14:50:39.443 回答