0

最近尝试使用 Google API dotnet 客户端 sdk 上传文件时出现问题。当文件名包含任何特殊的 Unicode 字符时,它会引发错误。

这是我的代码

    public static Google.Apis.Drive.v2.Data.File InsertResource(Google.Apis.Drive.v2.DriveService service, string filePath, string parentId, string fileName, string mimeType)
    {
        Google.Apis.Drive.v2.Data.File body = new Google.Apis.Drive.v2.Data.File();

        try
        {
            // File's metadata.

            body.Title = fileName;
            body.MimeType = mimeType;

            // Set the parent folder.
            if (!String.IsNullOrEmpty(parentId))
            {
                var response = DriveUtils.GetFileInfo(service, parentId);
                if (response.Error != null)
                {
                    body.Error = response.Error;
                    return body;
                }
                body.Parents = new List<ParentReference>() { new ParentReference() { Id = parentId } };
            }

            byte[] byteArray = System.IO.File.ReadAllBytes(filePath);
            MemoryStream stream = new MemoryStream(byteArray);

            Google.Apis.Drive.v2.FilesResource.InsertMediaUpload request = service.Files.Insert(body, stream, mimeType);

            request.Upload();
            return request.ResponseBody;

        }
        catch (GoogleApiRequestException e)
        {
            body.Error = e.RequestError;
            return body;
        }
}

直到本周它都运行良好。任何名称中包含中文字符或土耳其字符的文件都会引发错误。

在 Google.Apis.Json.JsonReader.ParseExpression(JsonToken token, TokenStream ts) 在 Google.Apis.Json.JsonReader.Parse(String jsonAsText) 在 Google.Apis.Upload.ResumableUpload`1.Upload()

4

1 回答 1

2

尝试下载最新版本的 API(来自https://code.google.com/p/google-api-dotnet-client/wiki/APIs#Drive_API)。我将 Drive 示例中的第 122 行(下载此示例的说明在此处)更改为 Title = "字/汉字" 和 Title = "title with ç",它们都对我有用。

于 2013-07-03T13:44:00.653 回答