我正在使用.net的谷歌文档电子表格API,我想使用asp.net C#插入新的google文档我无法做到这一点.
任何人都可以帮助我?
最佳答案 如果您确实发布了已有的代码,那么我们可能会专门为您提供帮助.
根据Google Developer’s Guide(here):
添加一行
要在基于列表的提要中插入新行,首先构造一个新的ListEntry并将其Elements属性设置为包含该行中的单元格.例如,给定表示现有行的ListEntry,您可以提示用户输入每列的值,如下所示:
ListEntry newRow = new ListEntry();
foreach (ListEntry.Custom element in existingRow.Elements)
{
Console.Write("Enter the value of column {0}: ", element.LocalName);
String elementValue = Console.ReadLine();
ListEntry.Custom curElement = new ListEntry.Custom();
curElement.LocalName = element.LocalName;
curElement.Value = elementValue;
newRow.Elements.Add(curElement);
}
然后在ListFeed中插入新行,如下所示:
ListEntry insertedRow = feed.Insert(newRow) as ListEntry;
电子表格会在基于列表的Feed中显示的最后一行之后立即插入新行,也就是说,紧接在第一个完全空白行之前.此代码相当于向URL发送经过身份验证的POST请求:
https://spreadsheets.google.com/feeds/list/key/worksheetId/private/full
与POST正文中的相应XML文档.
谢谢.