คำตอบที่โหวตมากที่สุดจาก @Kelly ใช้ไม่ได้อีกต่อไปตามที่ @wescpy กล่าว อย่างไรก็ตามหลังจากที่ 2020/03/03 Google Sheets v3 API
มันจะไม่ทำงานเลยตั้งแต่ห้องสมุดที่ใช้การใช้งาน
Google Sheets v3 API จะปิดตัวลงในวันที่ 3 มีนาคม 2020
https://developers.google.com/sheets/api/v3
สิ่งนี้ประกาศเมื่อวันที่ 2019-09-10 โดย Google:
https://cloud.google.com/blog/products/g-suite/migrate-your-apps-use-latest-sheets-api
ตัวอย่างโค้ดใหม่สำหรับ Google Sheets v4 API
:
ไปที่
https://developers.google.com/sheets/api/quickstart/dotnet
credentials.json
และสร้าง จากนั้นติดตั้งGoogle.Apis.Sheets.v4
NuGet และลองใช้ตัวอย่างต่อไปนี้:
โปรดทราบว่าฉันได้รับข้อผิดพลาดUnable to parse range: Class Data!A2:E
กับโค้ดตัวอย่าง แต่มีสเปรดชีตของฉัน Sheet1!A2:E
อย่างไรก็ตามการเปลี่ยนไปใช้งานได้เนื่องจากแผ่นงานของฉันมีชื่อว่านั้น A2:E
นอกจากนี้ยังทำงานร่วมกับเท่านั้น
using Google.Apis.Auth.OAuth2;
using Google.Apis.Sheets.v4;
using Google.Apis.Sheets.v4.Data;
using Google.Apis.Services;
using Google.Apis.Util.Store;
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
namespace SheetsQuickstart
{
class Program
{
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/sheets.googleapis.com-dotnet-quickstart.json
static string[] Scopes = { SheetsService.Scope.SpreadsheetsReadonly };
static string ApplicationName = "Google Sheets API .NET Quickstart";
static void Main(string[] args)
{
UserCredential credential;
using (var stream =
new FileStream("credentials.json", FileMode.Open, FileAccess.Read))
{
// The file token.json stores the user's access and refresh tokens, and is created
// automatically when the authorization flow completes for the first time.
string credPath = "token.json";
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
Scopes,
"user",
CancellationToken.None,
new FileDataStore(credPath, true)).Result;
Console.WriteLine("Credential file saved to: " + credPath);
}
// Create Google Sheets API service.
var service = new SheetsService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ApplicationName,
});
// Define request parameters.
String spreadsheetId = "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms";
String range = "Class Data!A2:E";
SpreadsheetsResource.ValuesResource.GetRequest request =
service.Spreadsheets.Values.Get(spreadsheetId, range);
// Prints the names and majors of students in a sample spreadsheet:
// https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit
ValueRange response = request.Execute();
IList<IList<Object>> values = response.Values;
if (values != null && values.Count > 0)
{
Console.WriteLine("Name, Major");
foreach (var row in values)
{
// Print columns A and E, which correspond to indices 0 and 4.
Console.WriteLine("{0}, {1}", row[0], row[4]);
}
}
else
{
Console.WriteLine("No data found.");
}
Console.Read();
}
}
}