Questions tagged [dropnet]

A .NET Client Library for the Dropbox API

A .Net client library for the Dropbox API

See https://github.com/DropNet

66 questions
0
votes
1 answer

Upload large file using dropnet

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…
0
votes
0 answers

DropNet GetDeltaAsync not working

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…
Rob
  • 1,226
  • 3
  • 23
  • 41
0
votes
1 answer

How to Use DropNet Client with UserId's received via Webhook

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…
0
votes
2 answers

Why my code to Upload a file to dropbox using DropNet library doesn't work

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…
ttitto
  • 97
  • 1
  • 10
0
votes
0 answers

Mirror with DropNet in C#

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…
Babe59
  • 45
  • 1
  • 9
0
votes
2 answers

Getting Dropbox Access Token With Dropnet

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…
NoxelNyx
  • 995
  • 1
  • 7
  • 21
0
votes
1 answer

DropNet & Authentication Issues

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…
Kiwi
  • 3
  • 3
0
votes
1 answer

DropNetRT Dropbox JSON deserializer seems to be using the wrong sort of object?

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 …
a p
  • 3,098
  • 2
  • 24
  • 46
0
votes
1 answer

Creating a userlogin with token and tokensecret

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 …
0
votes
1 answer

DropNet (dropbox) check for path, create if null

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 =…
jimmy6509
  • 33
  • 1
  • 8
0
votes
0 answers

Uploading to dropbox using dropnet

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…
0
votes
1 answer

Dropbox DropNet Delta API Sample

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.
Nilesh
  • 1
  • 2
0
votes
1 answer

Generate Auth token dynamically to Access Dropbox with DropBox Auth URL

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…
Akshay Joy
  • 1,765
  • 1
  • 14
  • 23
0
votes
1 answer

Exception when using DropNet API

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",…
0
votes
1 answer

How to handle downloading file progress by DropNet

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…
Joseph
  • 1,716
  • 3
  • 24
  • 42