OneDriveRestAPI
OneDriveRestAPI copied to clipboard
OneDrive RestAPI implementation based on HttpClient
// TODO: Navigate to authRequestUrl using the browser, and retrieve the Authorization Code from the response var authCode = await GetAuthCode(client, new[] { Scope.Signin, Scope.Basic, Scope.SkyDrive }); GetAuthCode does not...
As the project is based on Single thread while uploading its throwing error saying the thread is taking long time? how can i fix it?
In the line var client2 = new Client(clientId, clientSecret, callbackUrl, token.Access_Token, token.Refresh_Token); The correct should be: var client2 = new Client(options);
System.Threading.Tasks.TaskCanceledException when uploading big file.
Is it possble to report a progress using current implementation (HttpClient)? I guess it is possible using WebClient and it's built-in progress events, but it will take a lot of...