我一直致力于基于智能表的简单生产管理流程。我运行的代码在我的Ubuntu机器上工作正常,然后我将它复制到运行相同节点版本的Parrot Linux机器上,它不会找到存在的行。以下是要求:
var copyRow = {
"rowIds": artToProdRowsToCopy,
"to": {
"sheetId": productionId
}
};
// Set options
var options = {
sheetId: artId,
body: copyRow,
queryParameters: {
include: "all"
}
};
console.log(options);
// Copy the normal engraved rows from art to production
smartsheet.sheets.copyRowToAnotherSheet(options)
.then(function(results) {
callback1(null, results);
})
.catch(function(error) {
console.log(error);
});
选项的日志输出:
{ sheetId: 8129017524546436,
body:
{ rowIds: [ 8886954296800644 ],
to: { sheetId: 6941481487333252 } },
queryParameters: { include: 'all' } }
错误:
{ statusCode: 404,
errorCode: 1006,
message: 'Not Found',
refId: 'zjl2z56296l9' }
我在Parrot Linux 3.9上运行节点v8.9.1。
我已经检查过这些表格和行ID#中的每一个都是正确的并且它们都是(但是示例中的那些不是真实的)。任何帮助,将不胜感激。
编辑:添加调试信息:
[Smartsheet] 2017-11-20T20:22:55.876Z[ INFO] POST https://api.smartsheet.com/2.0/sheets/8129017124546436/rows//copy?include=all
[Smartsheet] 2017-11-20T20:22:55.876Z[VERBOSE] Request Payload (preview): {"rowIds":[2759271070885764,3212501789763460,4576920289470340,8982631438149508,2962733838690180,8886959296800644],"to":{"sheetId":6941441487333252}}
[Smartsheet] 2017-11-20T20:22:55.876Z[ DEBUG] Request Payload (full): {"rowIds":[2759271070885764,3212501789763460,4576920289470340,8982631438149508,2962733838690180,8886959296800644],"to":{"sheetId":6941441487333252}}
[Smartsheet] 2017-11-20T20:22:56.155Z[ ERROR] Request failed after 0 retries
[Smartsheet] 2017-11-20T20:22:56.156Z[ ERROR] POST https://api.smartsheet.com/2.0/sheets/8129017124546436/rows//copy?include=all
[Smartsheet] 2017-11-20T20:22:56.156Z[ ERROR] Response: Failure (HTTP 404)
Error Code: 1006 - Not Found
Ref ID: 85bn0m2j8oki
答案 0 :(得分:1)
我发现您的请求结构没有明显的问题。通常, 404 Not Found 错误与请求URI的问题有关,而不是与请求本身的内容有关。即, 404 Not Found 错误意味着由于某种原因,请求URI无法访问。
复制行请求的URI为:
POST /sheets/{sheetId}/rows/copy
一些故障排除建议:
验证请求URI中所有字符的大小写是否为小写。
验证与请求URI中的sheetId
值对应的工作表是否存在。
确认拥有您在复制行 API请求的Authorization
标头中指定的API访问令牌的用户确实拥有访问与请求URI中的sheetId
值对应的工作表。
如API文档的Troubleshooting部分所述,我建议您使用Fiddler或Charles HTTP Proxy等工具来检查应用发送的原始HTTP请求,然后就可以了调查/验证我上面列出的项目。
更新#1
感谢您使用调试信息更新帖子。基于此,看起来您的请求URI在单词rows
和copy
之间包含一个额外的斜杠:
POST https://api.smartsheet.com/2.0/sheets/8129017124546436/rows//copy?include=all
也许这会导致你的问题?
更新#2
如果我的请求URI在单词rows
和copy
之间包含两个斜杠,我已经能够重现Postman中的 Not Found 错误(就像您的调试一样)输出显示)。删除其中一个斜杠可以解决问题。也就是说,您的请求应该如下所示(rows
和copy
之间只有一个斜杠。)
POST https://api.smartsheet.com/2.0/sheets/8129017124546436/rows/copy?include=all
答案 1 :(得分:0)
看起来像我们的SDK错误。请继续关注修复。
答案 2 :(得分:0)