Question:
I'm using a DropBox csharp API from here:
https://github.com/dkarzon/DropNet
From the Unit tests, and the only working sample from here
https://github.com/dkarzon/DropNet/blob/master/DropNet.Samples/DropNet.Samples.Web/Default.aspx.cs
I…
I have some giant folders saved in DropBox with more than 10k files in them. I want to check if a list of files exists there, but I can't get the metadata on the parent folder because I am over the 10k limit.
So I have written code to check if each…
I just downloaded DropNet to try and use it. I am getting an exception when trying to do new DropNetClient:
Method not found: System.String RestSharp.RestClient.get_BaseUrl()
I searched this on Google and found that RestSharp may have introduced…
in C# I'm creating a client to sync local files and Dropbox folder, using DropNet lib.
If the same file is present both in the cloud and in the local folders, how do I check if they are equivalent, or which of the two is more up to date?
If I…
So I'm new to using external API's for projects, but I had an idea and I'd like to see if I can properly get files uploaded to dropbox. I've gone through the steps to get the key and token, and I've begun testing but I have run into an error:
An…
I am using the DropNet API to communicate with Dropbox.
I noticed the clients GetFile call has an overload which takes the start and end bytes of a file, essentially meaning we can grab a portion of it.
Is there a way to check via the DropNet api…
As many people before me, I'm failing miserably to successfully save an access token between launches of my application. This application is actually only going to be used with one specific dropbox account, though I'm trying to make it easy to set…
I'm working with dropbox: upload, delete, copy,..etc through DropNet API. So the problem is I can't access any folder that has over 10000 files. How can I improve it? Is it possible?
I'm trying to implement the DropNet library into my Windows Phone app but I'm getting the an error when calling the GetAccessTokenAsync method.
Step 1: Get the oauth token from Dropbox
public void ConnectToDropbox()
{
_client = new…
I want to asynchronously access DropBox API in a MonoTouch app.
I thought it would be convenient to use DropNet which itself relies on RestSharp.
Both libraries work well but DropNet overloads that return Tasks don't give you a way to associate…
I'm using Asp.net MVC 4 and Dropnet to download a file from my DropBox account. I'm not sure what is wrong with my code but I get a error whenever I run my project,
Received Response [Unauthorized] : Expected to see [OK]. The HTTP response was…
I’m creating a c# winforms desktop program with dropbox support. The problem comes in where the user must select the file (from dropbox) that he would like to open. Is it possible to use the OpenFileDialog to display the content of the person’s…
I'm using DropNetRT and I'm executing this code:
api.UseSandbox = true;
await api.GetMetaData("/");
It never returns from the GetMetadata function. All my other calls (i.e. GetDelta, Upload, GetFile) all work. Any direction you can give me would…