无法使用azure node.js sdk更新azure表存储中的实体

时间:2013-10-08 15:05:56

标签: node.js azure express azure-table-storage

我正在使用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' } } }

我对如何修复它的想法?

1 个答案:

答案 0 :(得分:0)

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