DropboxRestAPI icon indicating copy to clipboard operation
DropboxRestAPI copied to clipboard

Dropbox REST API client in C#

Results 11 DropboxRestAPI issues
Sort by recently updated
recently updated
newest added

Does someone know how to solve it? ------------------------------------------------------------------------------------------------ Severity Code Description Project File Line Suppression State Error CS1061 'IOAuth2' does not contain a definition for 'AuthorizeAsync' and no accessible extension...

hi, this is my code: `var options = new Options { ClientId = appKey, //App key ClientSecret = appSecret, //App secret RedirectUri = callbackUrl }; // Initialize a new Client...

hi, i used: var authRequestUrl = client.Core.OAuth2.Authorize("code"); HttpWebRequest request = (HttpWebRequest)WebRequest.Create(authRequestUrl); request.ContentType = "text/json"; request.Method = "GET"; request.AllowAutoRedirect = true; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); but the request not return code...

Hello, in documentation OAuth Request Url obtained in this way: `var authRequestUrl = await client.Core.OAuth2.AuthorizeAsync("code");` But in the latest version has changed and I can not use this code. I...

When request to the given file fails with specific errors like 404 Not Found, or 461 DMCA Takedown, the error was not recognized and we still tried to download the...

is possible to get .net framework 4.0 compatibility? Thanks

Hello, I get the exception below. The only related cause I can think of is that I'm trying to use a more recent version of the Newtonsoft.Json library. ``` System.AggregateException...

When downloading large files this line of code in RequestJsonString method of DropboxClient class ``` var response = await this.httpClient.SendAsync(request); ``` create buffer equal to the content length of the...

I have been trying to call this method - Files(path, filestream). Following the example from the documentation. Everything else works, file upload, create folder, delete file, delete folder, even getting...

I'm currently adding dropbox file sharing to an application I'm working on, and I have it setup to get the auth key from the user, and then it stores the...