2012-07-10 69 views
2

我可以打开工作表并从头中读取单元格。 Google电子表格中的第一行是标题,我在Google电子表格中手动添加了“名称”,“my-val1”,“my-val2”,“my-val3”,“其他”。无法将行添加到Google Spreadsheet

下面是相关谷歌文档:

https://developers.google.com/google-apps/spreadsheets/#adding_a_list_row

我想添加一行到工作表,但得到的,而一般的错误“远程服务器返回错误:(400)错误的请求“。任何想法我做错了什么?

下面是代码:

AtomLink listFeedLink = worksheet.Links.FindService(GDataSpreadsheetsNameTable.ListRel, null); 
ListQuery listQuery = new ListQuery(listFeedLink.HRef.ToString()); 
ListFeed listFeed = myService.Query(listQuery); 

ListEntry row = new ListEntry(); 

row.Elements.Add(new ListEntry.Custom() { LocalName = "Name", Value = "Joe" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val1", Value = "Smith" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val2", Value = "26" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val3", Value = "176" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "Other", Value = "176" }); 

myService.Insert(listFeed, row); 

以下是错误消息:

Google.GData.Client.GDataRequestException: Execution of request failed: https://spreadsheets.google.com/feeds/list/tlb-JYE8eZbWTRPCoqugCqw/od6/private/full ---> System.Net.WebException: The remote server returned an error: (400) Bad Request. 
    at System.Net.HttpWebRequest.GetResponse() 
    at Google.GData.Client.GDataRequest.Execute() 
    --- End of inner exception stack trace --- 
    at Google.GData.Client.GDataRequest.Execute() 
    at Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter) 
    at Google.GData.Client.GDataGAuthRequest.Execute() 
    at Google.GData.Client.Service.EntrySend(Uri feedUri, AtomBase baseEntry, GDataRequestType type, AsyncSendData data) 
    at Google.GData.Client.Service.Insert(Uri feedUri, AtomEntry newEntry, AsyncSendData data) 
    at Google.GData.Client.Service.Insert[TEntry](Uri feedUri, TEntry entry) 
    at Google.GData.Client.Service.Google.GData.Client.IService.Insert(AtomFeed feed, AtomEntry entry) 
    at Google.GData.Client.Service.Insert[TEntry](AtomFeed feed, TEntry entry) 
    at DesktopControl.GoogleSpreadsheet.addRow() in C:\Users\mark\Documents\Visual Studio 2008\Projects\DSCON\DSCON\GoogleSpreadsheet.cs:line 248} 
+0

我得到** System.Net.WebException:远程服务器返回错误:(403)禁止。** – 2015-08-24 19:21:55

回答

5

好的,根据this link,列名必须在小写字母和没有在代码空间表示。该行在更改代码后插入:

row.Elements.Add(new ListEntry.Custom() { LocalName = "name", Value = "Joe" }); // "Name" changed to "name" 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val1", Value = "Smith" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val2", Value = "26" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "my-val3", Value = "176" }); 
row.Elements.Add(new ListEntry.Custom() { LocalName = "other", Value = "176" }); // "Other" changed to "other"