简体   繁体   English

在Google Sheet中创建一个新工作表c#

[英]Create a new sheet in Google Sheet c#

I am able to retrieve and update values in Google Sheets using the code below: 我可以使用以下代码检索和更新Google表格中的值:

private void btnUpdate_Click(object sender, EventArgs e)
        {
            if (cbYards.Text == "Select Yard")
            {
                MessageBox.Show(@"Please select a yard.");
                return;
            }
            UserCredential credential;

            using (var stream =
                new FileStream("client_secret.json", FileMode.Open, FileAccess.Read))
            {
                string credPath = System.Environment.GetFolderPath(
                    System.Environment.SpecialFolder.Personal);
                credPath = Path.Combine(credPath, ".credentials/sheets.googleapis.com-dotnet-quickstart.json");

                credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
                    GoogleClientSecrets.Load(stream).Secrets,
                    Scopes,
                    "user",
                    CancellationToken.None,
                    new FileDataStore(credPath, true)).Result;
                Console.WriteLine("Credential file saved to: " + credPath);
            }

            var service = new SheetsService(new BaseClientService.Initializer()
            {
                HttpClientInitializer = credential,
                ApplicationName = ApplicationName,
            });

            IList<IList<Object>> list = new List<IList<Object>>() { };
            for (var i = 0; i < dataGridView1.Rows.Count - 1; i++)
            {
                var formula = "=IFERROR(VLOOKUP(B"+(i+2)+",Names!$A$2:$B,2,FALSE),\"No Record\")";
                List<object> lists = new List<object>() { formula, dataGridView1.Rows[i].Cells[0].Value.ToString(), 
                    dataGridView1.Rows[i].Cells[1].Value.ToString() };
                list.Add(lists);
            }

            var range = cbYards.Text+"!A2:C";
            ValueRange VRange = new ValueRange();
            VRange.Range = range;
            VRange.Values = list;

            //ValueRange response = request.Execute();
            ValueRange valueRange = new ValueRange();
            valueRange.MajorDimension = "COLUMNS"; 

            SpreadsheetsResource.ValuesResource.UpdateRequest upd = service.Spreadsheets.Values.Update(VRange, spreadsheetId, range);
            upd.ValueInputOption = SpreadsheetsResource.ValuesResource.UpdateRequest.ValueInputOptionEnum.USERENTERED;
            UpdateValuesResponse response = upd.Execute();
        }

My question is how can I create a new Sheet in the Google Sheet that I am currently using. 我的问题是如何在我目前使用的Google表格中创建新的工作表。 I thought that all I need to do is replace the 我认为我需要做的就是更换

SpreadsheetsResource.ValuesResource.UpdateRequest upd = service.Spreadsheets.Values.Update(VRange, spreadsheetId, range);

to

SpreadsheetsResource.ValuesResource.UpdateRequest upd = service.Spreadsheets.create();

but apparently it is wrong... 但显然这是错的......

I can't understand how to implement the instructions in the documentation at Method: spreadsheets.create 我无法理解如何实现Method:spreadsheets.create文档中的说明

What does the JSon have do with how I will be coding in C#? JSon如何处理我在C#中的编码方式? Really appreciate the help. 真的很感激帮助。

UPDATE I found this here but it is not complete since it is still giving me an error of 更新我在这里找到了这个,但它没有完成,因为它仍然给我一个错误

Additional information: Object reference not set to an instance of an object. 附加信息:未将对象引用设置为对象的实例。

This is the updated code: 这是更新的代码:

private void button1_Click(object sender, EventArgs e)
        {
            UserCredential credential;

            using (var stream =
                new FileStream("client_secret.json", FileMode.Open, FileAccess.Read))
            {
                string credPath = System.Environment.GetFolderPath(
                    System.Environment.SpecialFolder.Personal);
                credPath = Path.Combine(credPath, ".credentials/sheets.googleapis.com-dotnet-quickstart.json");

                credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
                    GoogleClientSecrets.Load(stream).Secrets,
                    Scopes,
                    "user",
                    CancellationToken.None,
                    new FileDataStore(credPath, true)).Result;
                Console.WriteLine("Credential file saved to: " + credPath);
            }

            var service = new SheetsService(new BaseClientService.Initializer()
            {
                HttpClientInitializer = credential,
                ApplicationName = ApplicationName,
            });

            string sheetName = string.Format("{0} - {1}-{2}", cbYards.Text, fromDate.Value.ToShortDateString(), toDate.Value.ToShortDateString());
            var myNewSheet = new Google.Apis.Sheets.v4.Data.Spreadsheet();
            myNewSheet.Properties = new SpreadsheetProperties();
            myNewSheet.Properties.Title = sheetName;
            var newSheet = service.Spreadsheets.Create(myNewSheet).Execute();
        }

There is a method in the client library for create you just need to pass it the new sheet object. 客户端库中有一个方法用于创建,您只需要将新的工作表对象传递给它。 Don't forget to instantiate the Properties before assigning the title (line 2 below) 在分配标题之前不要忘记实例化属性(下面的第2行)

var myNewSheet = new Google.Apis.Sheets.v4.Data.Spreadsheet();
myNewSheet.Properties = new SpreadsheetProperties();
myNewSheet.Properties.Title = "Daimtos awsom sheet";
var awsomNewSheet= service.Spreadsheets.Create(myNewSheet).Execute();

Note: I agree with you that documentation page is useless. 注意:我同意您的说明文档页面没用。

The reason why you get a null reference is because you can't have a spreadsheet without a sheet in it. 您获得空引用的原因是因为您不能拥有没有工作表的电子表格。

var myNewSheet = new Google.Apis.Sheets.v4.Data.Spreadsheet();
myNewSheet.Properties = new SpreadsheetProperties();
myNewSheet.Properties.Title = sheetName;

var sheet = new Sheet();
sheet.Properties = new SheetProperties();
sheet.Properties.Title = "Sheet1";
myNewSheet.Properties.Sheets = new List<Sheet>() { sheet };

var newSheet = service.Spreadsheets.Create(myNewSheet).Execute();

Your updated solution works perfectly. 您更新的解决方案非常有效 But I had issues with "Request had insufficient authentication scopes" because stored credentials allowed Read only access. 但是我遇到了“请求认证范围不足”的问题,因为存储的凭据允许只读访问。 I had solved the problem by deleting user credentials (stored previously in /Users/yourUserName/.credentials/sheets.googleapis.com-projectName/*) and executing the application again to get new credentials 我通过删除用户凭据(先前存储在/Users/yourUserName/.credentials/sheets.googleapis.com-projectName/*中)并再次执行应用程序以获取新凭据来解决了该问题

The following piece of code is working on my side: 以下代码正在我身边:

var addSheetRequest = new AddSheetRequest();
addSheetRequest.Properties = new SheetProperties();
addSheetRequest.Properties.Title = sheetName;
BatchUpdateSpreadsheetRequest batchUpdateSpreadsheetRequest = new BatchUpdateSpreadsheetRequest();
batchUpdateSpreadsheetRequest.Requests = new List<Request>();
batchUpdateSpreadsheetRequest.Requests.Add(new Request { AddSheet = addSheetRequest });

var batchUpdateRequest = service.Spreadsheets.BatchUpdate(batchUpdateSpreadsheetRequest, SpreadsheetId);
batchUpdateRequest.Execute();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM