我正在尝试按照Google Sheets API生成包含现有电子表格中数据的工作表。我能够建立连接,访问所需的电子表格,创建新的工作表以及其他各种事物。但是,当我尝试使用我的SpreadsheetService对象创建一行时,即使使用API的Add a list row section中的代码,我也会收到错误。
使用上面链接中提供的代码,我在行service.insert(listFeed, row);
处收到错误:
An unhandled exception of type 'Google.GData.Client.GDataRequestException' occurred in Google.GData.Client.dll
Additional information: Execution of request failed:
然后,在执行请求失败的情况下,'是指向我正在使用的工作表的订阅源的链接,无论是刚刚创建的空白工作表还是现有工作表,都会失败。此链接如下所示:
如何正确地将一行插入工作表?