我想在我的谷歌工作表的标题中添加一个过滤器。我使用 C# 找到了这个答案,并尝试从中构建 JSON。这是我想出的但没有运气:
{'AddFilterViewRequest' : {
'AddFilterViewResponse': {
'Filter' : {
'FilterView': {
'title' : "Hide rows with errors",
'range': {'sheetId': sheet_id,
'startRowIndex': 0,
'endRowIndex': 2,
'startColumnIndex': 1,
'endColumnIndex': 31}
}
}
}
}}
Run Code Online (Sandbox Code Playgroud)
有人知道我出了什么问题吗?