Google drive api v3 response null

Em chào các Bác,
Em đang tập tành sử dụng Drive API v3. Em đang bị 1 chút vấn đề là.
Em sử dụng Examble của Google code phần Upload. Code chạy fine, không gặp vấn đề gì, nhưng khi chạy qua dòng " request.Upload();" thì return “request.ResponseBody;” lại NULL. Em chưa rõ nó bị exception chỗ nào. Bác nào từng làm qua chỉ bảo em với ạ. Em cảm ơn ạ.
Code Examble em xem trang này : https://developers.google.com/drive/v3/web/appdata
Đoạn Create của em:

public static void InsertFileintoApplicationDataFolder(DriveService service)
{
Google.Apis.Drive.v3.Data.File fileMetadata = new Google.Apis.Drive.v3.Data.File();
fileMetadata.Name = “config.json”;
fileMetadata.Description = “File uploaded by installed app”;
//fileMetadata.Parents = new List() { “appDataFolder” };
FilesResource.CreateMediaUpload request;
using (var stream = new System.IO.FileStream(“files/config.json”,
System.IO.FileMode.Open))
{
request = service.Files.Create(fileMetadata, stream, “application/json”);
request.Fields = “id”;
request.Upload();
}
Google.Apis.Drive.v3.Data.File file = request.ResponseBody;
Console.WriteLine("File ID: " + file.Id);
}

Em cảm ơn ạ.

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?