如何使用Microsoft Graph API rest调用在c#中上传大文档

时间:2018-04-11 13:53:00

标签: c# microsoft-graph onedrive

我正在使用外部.Net Web App,并想知道如何使用Microsoft Graph将大文件上传到文档库。我能够上传最多4mb,但是它上面的任何东西都会抛出错误。

我知道有一个createUploadSession但不确定如何实现它。任何帮助都会非常感激。

这就是我要成功上传到4mb的目的:

string requestUrl =
    "https://graph.microsoft.com/v1.0/drives/{mydriveid}/items/root:/" +
    fileName + ":/content";

HttpClient Hclient = new HttpClient();

HttpRequestMessage message = new HttpRequestMessage(HttpMethod.Put, requestUrl);

message.Content = new StreamContent(file.InputStream);

client.DefaultRequestHeaders
    .TryAddWithoutValidation("Content-Type",
        "application/json; odata=verbose; charset=utf-8");

HttpResponseMessage Hresponse = await client.SendAsync(message);

//if the response is 200 then read the response and retrive the GUID!
if (Hresponse.IsSuccessStatusCode)
{
    responseString = await
    Hresponse.Content.ReadAsStringAsync();
    JObject jDataRetrieved = JObject.Parse(responseString);
    strGuid = jDataRetrieved.SelectToken("eTag").ToString();

}

2 个答案:

答案 0 :(得分:3)

您可以使用客户端库来帮助您执行此操作。来自this test

System.Drawing.ImageConverter converter = new System.Drawing.ImageConverter();
var buff = (byte[])converter.ConvertTo(Microsoft.Graph.Test.Properties.Resources.hamilton, typeof(byte[]));
using (System.IO.MemoryStream ms = new System.IO.MemoryStream(buff))
{
    // Get the provider. 
    // POST /v1.0/drive/items/01KGPRHTV6Y2GOVW7725BZO354PWSELRRZ:/_hamiltion.png:/microsoft.graph.createUploadSession
    // The CreateUploadSesssion action doesn't seem to support the options stated in the metadata.
    var uploadSession = await graphClient.Drive.Items["01KGPRHTV6Y2GOVW7725BZO354PWSELRRZ"].ItemWithPath("_hamilton.png").CreateUploadSession().Request().PostAsync();

    var maxChunkSize = 320 * 1024; // 320 KB - Change this to your chunk size. 5MB is the default.
    var provider = new ChunkedUploadProvider(uploadSession, graphClient, ms, maxChunkSize);

    // Setup the chunk request necessities
    var chunkRequests = provider.GetUploadChunkRequests();
    var readBuffer = new byte[maxChunkSize];
    var trackedExceptions = new List<Exception>();
    DriveItem itemResult = null;

    //upload the chunks
    foreach (var request in chunkRequests)
    {
        // Do your updates here: update progress bar, etc.
        // ...
        // Send chunk request
        var result = await provider.GetChunkRequestResponseAsync(request, readBuffer, trackedExceptions);

        if (result.UploadSucceeded)
        {
            itemResult = result.ItemResponse;
        }
    }

    // Check that upload succeeded
    if (itemResult == null)
    {
        // Retry the upload
        // ...
    }
}

答案 1 :(得分:3)

.NET客户端库的新的和改进的大文件上传

与流利的客户

创建上传会话

// Create upload session 
// POST /v1.0/drive/items/01KGPRHTV6Y2GOVW7725BZO354PWSELRRZ:/SWEBOKv3.pdf:/microsoft.graph.createUploadSession
var uploadSession = await graphClient.Drive.Items[itemId].ItemWithPath("SWEBOK.pdf").CreateUploadSession().Request().PostAsync();

创建任务

// Create task
var maxChunkSize = 320 * 1024; // 320 KB - Change this to your chunk size. 5MB is the default.
var largeFileUpload = new LargeFileUpload(uploadSession, graphClient, stream, maxChunkSize);

创建上传监视器

public class MyProgress : IProgressCallback
{
    public void OnFailure(ClientException clientException)
    {
        Console.WriteLine(clientException.Message);
    }

    public void OnSuccess(DriveItem result)
    {
        Console.WriteLine("Download completed with id below");
        Console.WriteLine(result.Id);
    }

    public void UpdateProgress(long current, long max)
    {
        long percentage = (current * 100) / max ;
        Console.WriteLine("Upload in progress. " + current + " bytes of " + max + "bytes. " + percentage + " percent complete");
    }
}

上传文件

uploadedFile = await largeFileUpload.ResumeAsync(new MyProgress());

使用HTTP客户端

创建上传会话

// Create upload session 
// POST /v1.0/drive/items/01KGPRHTV6Y2GOVW7725BZO354PWSELRRZ:/SWEBOKv3.pdf:/microsoft.graph.createUploadSession
string uri = $"https://graph.microsoft.com/v1.0/drive/items/{itemId}:/SWEBOKv3.pdf:/microsoft.graph.createUploadSession";

HttpRequestMessage httpRequestMessage = new HttpRequestMessage(HttpMethod.Post, uri);
await graphClient.AuthenticationProvider.AuthenticateRequestAsync(httpRequestMessage);

// Read the session info from the response
var httpResponseMessage = await graphClient.HttpProvider.SendAsync(httpRequestMessage);
var content = await httpResponseMessage.Content.ReadAsStringAsync();
var uploadSession = graphClient.HttpProvider.Serializer.DeserializeObject<UploadSession>(content);

创建任务

// Create task
var maxSliceSize = 320 * 1024; // 320 KB - Change this to your chunk size. 4MB is the default.
LargeFileUploadTask<DriveItem> largeFileUploadTask = new LargeFileUploadTask<DriveItem>(uploadSession, stream, maxSliceSize);

创建上传监视器

// Setup the progress monitoring
IProgress<long> progress = new Progress<long>(progress =>
{
    Console.WriteLine($"Uploaded {progress} bytes of {stream.Length} bytes");
});

上传文件

UploadResult<DriveItem> uploadResult = null;
try
{
    uploadResult = await largeFileUploadTask.UploadAsync(progress);

    if (uploadResult.UploadSucceeded)
    {
        Console.WriteLine($"File Uploaded {uploadResult.ItemResponse.Id}");//Sucessful Upload
    }
}
catch (ServiceException e)
{
    Console.WriteLine(e.Message);
}
相关问题