如何使用带有c#的google sheet api将csv文件上传到Google工作表?

时间:2018-01-29 01:59:47

标签: c# csv restsharp google-sheets-api

我有一种使用restsharp从网站上提取csv的方法。

 class ScheduledBilling
{

    public string Report()
    {
        var client = new RestClient("http://example.com");
        client.CookieContainer = new System.Net.CookieContainer();
        client.Authenticator = new SimpleAuthenticator("username", "xxx", "password", "xxx");
        var request = new RestRequest("/login", Method.POST);


        IRestResponse response = client.Execute(request);


        var ScheduledBilling = client.DownloadData(new RestRequest("/file));
        var csv = System.Text.Encoding.Default.GetString(ScheduledBilling);

        return(csv);

    }

}

总的来说,我一直在使用混合的教程和快速入门,以便我可以在google工作表中输入信息。

//ScheduledCRMBilling.Report();
            ScheduledCRMBilling obj = new ScheduledCRMBilling();
            string csv = obj.Report();

        String spreadsheetId2 = "xxx";
        String range1 = "Scheduled Billing";

        ValueRange valueRange1 = new ValueRange();   

        valueRange1.MajorDimension = "ROWS";//"ROWS";//COLUMNS

        var oblist1 = new List<object>() { csv };

        SpreadsheetsResource.ValuesResource.UpdateRequest update1 = service.Spreadsheets.Values.Update(valueRange1, spreadsheetId2, range1);

        update1.ValueInputOption = SpreadsheetsResource.ValuesResource.UpdateRequest.ValueInputOptionEnum.RAW;

        UpdateValuesResponse result1 = update1.Execute();

        Console.WriteLine("done!");

我已将范围设置为整个工作表(计划结算)。会发生的是,第一个单元格中填充了csv中的所有信息,而不是将csv导入到Google表格中。我该怎么办? 我觉得我应该将csv变量作为字符串列表传递,这会在每个单元格中放置一个字符串。但后来我不知道它是什么时候知道新线路的时间。

1 个答案:

答案 0 :(得分:0)

正如我在OPs问题上所提到的答案所述,Sheets API不提供上传工作表的功能,只是从头创建一个。

最终必须使用Drive API,因为这样可以上传文件。特别相关的是关于uploading google docs types的这一部分,因为它们将被转换为适当的类型。因此,您的CSV文件将转换为Google表格。

如果您的电子表格在内存中,也就是存储在变量中,您可以替换此行:

using (var stream = new System.IO.FileStream("files/report.csv",
                    System.IO.FileMode.Open))

以下内容:

using (var stream = new System.IO.MemoryStream(Encoding.ASCII.GetBytes(csv)))

在调用上传功能之前,您必须使用this guide为应用创建凭据,您还必须将范围更改为Drive。下面是一个小型应用程序,我将它放在一起演示整个上传流程 - 假设您已经为Drive API创建了OAuth令牌并将秘密下载到您的项目中。

using Google.Apis.Auth.OAuth2;
using Google.Apis.Drive.v3;
using Google.Apis.Services;
using Google.Apis.Util.Store;
using System;
using System.IO;
using System.Text;
using System.Threading;

namespace ConsoleApp3
{
    internal class Program
    {
        // If modifying these scopes, delete your previously saved credentials
        // at ~/.credentials/sheets.googleapis.com-dotnet-quickstart.json
        private static string[] Scopes = { DriveService.Scope.Drive };

        private static string ApplicationName = "CsvTest";

        private static void Main(string[] args)
        {
            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/drive.googleapis.com1.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 DriveService(new BaseClientService.Initializer()
            {
                HttpClientInitializer = credential,
                ApplicationName = ApplicationName,
            });

            var fileMetadata = new Google.Apis.Drive.v3.Data.File()
            {
                Name = "My Report",
                MimeType = "application/vnd.google-apps.spreadsheet"
            };

            var csv = "Heading1,Heading2,Heading3\r\nEntry1,Entry2,Entry3";

            FilesResource.CreateMediaUpload request;
            using (var stream = new System.IO.MemoryStream(Encoding.ASCII.GetBytes(csv)))
            {
                request = service.Files.Create(
                    fileMetadata, stream, "text/csv");
                request.Fields = "id";
                request.Upload();
            }
            var file = request.ResponseBody;

            Console.WriteLine("File ID: " + file.Id);

            Console.Read();
        }
    }
}

修改

您可以将NameApplication更改为您喜欢的任何名称。

修改

快乐的编码。