将行插入Google电子表格

时间:2015-12-11 07:12:55

标签: c# asp.net google-sheets google-spreadsheet-api

我需要在Google电子表格中插入行。下面是我正在使用但无法插入行的代码。没有构建问题。编译成功。

 SpreadsheetsService GoogleExcelService =  new SpreadsheetsService("GoogleSheet");

        protected void Page_Load(object sender, EventArgs e)
        {
            //Pass Google credentials 
            GoogleExcelService.setUserCredentials("user@gmail.com", "password");

            ListEntry entry = new ListEntry();
            //Add new row data with productname bottles and quantity 100.
            entry.Elements.Add(new ListEntry.Custom() { LocalName = "productname", Value = "Bottles" });
            entry.Elements.Add(new ListEntry.Custom() { LocalName = "quantity", Value = "100" });

            //AtomEntry retEntry = GoogleExcelService.Insert(

            AtomEntry retEntry = GoogleExcelService.Insert(new Uri("***WHAT URI I SHOULD PROVIDE HERE"), entry);
        }
    }

我已经花了太多时间来解决这个问题,但没有运气。我得到"执行身份验证请求返回意外结果:404"错误。请帮忙。

1 个答案:

答案 0 :(得分:0)

您使用的是OAuth1.0吗?根据2015年5月提交的ticket,OAuth1.0现已弃用(截至2015年5月),应迁移到OAuth2.0使用。它似乎返回了您遇到的相同错误消息。

有关OAuth2.0使用情况的更多信息,请参见developer page

希望这有帮助!