节点Google Docs REST API批量更新无效的JSON有效负载/缺少documentId

时间:2019-02-13 00:31:33

标签: node.js json rest google-api google-docs-api

当尝试执行批量更新时,我收到无效的JSON有效负载错误;并尝试对JSON进行字符串处理会产生“缺少documentId”错误。问题不是OAuth,令牌或文档范围,因为它们都是正确的并且可以正常工作(作用域已从示例的只读更改为整个文档范围)。

由于在节点上没有Google的新批处理更新API的示例,因此批处理更新一直存在重大问题。在对batchUpdate构造函数进行一些故障排除之后,我将问题范围缩小到了(可能是)API url构造函数的一个更大的问题,或者我的语法错误了(或两者兼而有之。)或者我缺少为API调用创建适当的对象的步骤(没有用于这些任务的文档)

根据Google节点快速入门指南成功获取文档后的回调(主要是)

    let offset = startIndex + 12
    let updateObject = {
      documentId:doc_id,
      requests:
        [{
          insertTextRequest : 
            {
              text : 'John Doe',
              location : {
                index : offset
              }
            }
        }]
      } 
    docs.documents.batchUpdate(updateObject,function(e,r){
      console.log(e)
      console.log(r)
    }

Google API响应

'Invalid JSON payload received. Unknown name "requests[insertText][location][index]": Cannot bind query parameter. Field \'requests[insertText][location][index]\' could not be found in request message.\nInvalid JSON payload received. Unknown name "requests[insertText][text]": Cannot bind query parameter. Field \'requests[insertText][text]\' could not be found in request message.',
   domain: 'global',
   reason: 'badRequest' } ] }

尝试JSON.stringify(updateObject)-截断后响应

Error: Missing required parameters: documentId
at node_modules\googleapis-common\build\src\apirequest.js:114:19
at Generator.next (<anonymous>)

我的最佳猜测是,为了使API正确编码JSON对象以使请求成功,需要发生某种Google巫术魔术。

  • 将单个请求的数组更改为对象不会对以上内容产生影响。
  • 对请求对象参数名称/字符串变量使用单引号/双引号无效。
  • 文档ID是一个字符串,可以正常工作,只是在代码示例中未显示。
  • 在请求中添加documentId字段无效。

1 个答案:

答案 0 :(得分:1)

此修改如何?

修改点:

  • insertTextRequest的属性修改为insertText
  • 关于updateObject,请使用resource的属性放置请求正文。

修改后的脚本:

let offset = startIndex + 12;
let updateObject = {
    documentId: doc_id,
    resource: {
        requests: [{
            "insertText": {
                "text": "John Doe",
                "location": {
                    "index": offset,
                },
            },
        }],
    },
};
docs.documents.batchUpdate(updateObject, function(e, r) {
    if (e) {
        console.log(e);
    } else {
        console.log(r.data);
    }
});

注意:

  • 如果状态为INVALID_ARGUMENT的错误和消息“无效的请求[0] .insertText:索引###必须小于引用段的末尾索引##”。例如,请尝试将index修改为1
  • 如果发生错误,请尝试使用最新版本的googleapis,因为Docs API是最近添加的。
  • 此修改后的脚本假设访问令牌包括https://www.googleapis.com/auth/documents的范围,并且已启用Docs API。

参考文献:

如果我误解了你的问题,我表示歉意。