I'm using dropnet to upload files to the dropbox. Until then everything is working well, but only for small files on it. The following code I'm using to send:
private void btnEnviar_Click(object sender, EventArgs e)
{
var _client = new…
I am using the very latest DropNet and I am unable to get the changed files in my dropbox account. It fails every time. I have many files in the root and I have a subfolder of SB which I would like to check for changes; however if I could get…
I am using DropBox Webhook to get the notification regarding any changes on DropBox.
I'll get user id from webhook.
I read there tutorial and they said that after getting user id's i have to call dropbox api on the behalf of that particular…
I've read all two pages of existing questions about DropNet and I still can not understand why I can not upload a file from a folder on my PC to my dropbox using DropNet library and C# in a desktop application. This is my code that executes on a…
in C# I'm creating a client to update my dropbox files from local files. it's not a synchronization.
Dropbox files must be a copy of local files (if local file is update then I must update on dropbox. if dropbox file is update I must do nothing on…
I'm attempting to implement file uploading to Dropbox on my site. However, I'm having trouble getting the accessToken after the user clicks to authorize my app.
Here is my code to grab the URL, which gets returned to the client to open a new window…
I am receiving the following error: "request token has not been properly authorized by user". The issue lies in the RequestToAccessToken() method.
The following is my code:
private DropNetClient _client;
private UserLogin _userlogin;
private string…
I'm using DropNetRT to try to integrate with Dropbox, but am consistently getting errors at the point of deserializing JSON responses from the Dropbox API. Without further ado:
The exception thrown is
Newtonsoft.Json.JsonReaderException occurred
…
I'm using Dropnet library to communicate with Dropbox.
After I accept the first time that my account allows my APP I save the token and secret forn next time I can process whatever I want without asking the user again.
But after I do this code:
Try
…
I can successfully connect to dropbox using the dropnet API. I want to check if a directory (path) exists. There's got to be a better way than handling it as an error?
private void LoadContents()
{
string _path = null;
//_path =…
I started to develop a project to create some dll to comunicate with Dropbox (Desktop).
After searching a while in google I found dropnet and started to use it.
I have two problems with this library on accessing the token and when I'm doing an…
I am looking for to sync up operation with my client app folders should always be updated with with server files and folders.. maybe Delta will help me in this case
I am looking for some sample source code to work with.
Please help me to suggest an idea to generate auth token without user needs to create the OAuth token. Using DropNet I Can download file using appkey,appsecret, oauthtokn. Already user needs to give the appkey and apptoken , on top of that user…
i did a lot of research but couldn't find a solution to my problem.I'm building a dropbox client using dropNet API but when i got an exception when trying to get access token.
Here is my code:
var client = new DropNetClient("KEY",…
I'm using DropNet to download file from Dropbox, I see it use the RestClient for execute the reques.
My question:
Is there anyway to get progress status during the Download?
I mean, if I'm downloading a few Megabyte file size, how I'll know that the…