我需要在一个请求中获取所有列的列表,并手动说明我应该传递查询字符串参数:
大多数索引端点默认为 100 个结果的页面大小。如果您一次需要所有结果,则应指定 includeAll=true 查询字符串参数。
这是我尝试过的:
var options = {
sheetId: 2252168947361668,
includeAll: true
};
smartsheet.sheets.getColumns(options)
.then(function (data) {
console.log(data);
})
.catch(function (error) {
console.log(error);
});
但它只返回前 100 列。我应该如何将查询字符串参数传递smartsheet-api
给 node.js?