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

UploadFile doesn´t work

Hi we are using "dropnet" API and works fine until today, just is not working the UploadFile method, play media, move or delete works fine, but the upload is not working can someone help to figuredout why? basically the process upload the file and…
0
votes
1 answer

Error using DropNet

I have the following error when using DropNet library to make connection to DropBox. Trying to implement it for my CMS and also for my knowledge :) trying the current documentation of DropNet. Source:https://github.com/DropNet/DropNet Current…
Stefan van de Laarschot
  • 2,154
  • 6
  • 30
  • 50
0
votes
1 answer

DropNet returning metadata for root folder not folder requested

Problem: GetMetaData for the folder that I need returns the root folder metadata. Background: I'm trying to write a small app to download a folder that is too large (many thousand files and multiple GB) to download from the Dropbox web interface. It…
FMJ
  • 23
  • 6
0
votes
1 answer

Use DropNet with generated access token

I'm trying to find a way to use DropNet with generated access token but can't find solution. Following code throws exception and says "Access token not found". var client = new DropNetClient("App Key", "Secret"); client.UserLogin = new UserLogin {…
0
votes
1 answer

Load DropNet user token and secret from a database in a C# WinForms application

I wonder if anyone can help. I'm using DropNet client and I've successfully authorized the app with Dropbox and I've stored the user token and secret within a SQL database so I can access them again as follows: public void Authenticated(Action…
Rob Gleeson
  • 315
  • 1
  • 5
  • 17
0
votes
1 answer

Error in dropNet's DropNetClient.GetAccessToken (Unhandled exception)

I'm making a dropBox downloader in .Net and getting unhandled exception every time i try to run the code. I already authenticated the dropbox App. Here's the code: dropClient = new DropNetClient("xxxxxxxxxxxxx", "yyyyyyyyyyyyyy"); //Btw in my code I…
Morga121
  • 3
  • 6
0
votes
1 answer

Store user token from Dropbox using DropNet

I'm trying to store a user token once my application has been authorized with Dropbox so that when I open a different form (which will have drag and drop functionality), the user won't have to authorize the app again and will be able to perform…
Rob Gleeson
  • 315
  • 1
  • 5
  • 17
0
votes
1 answer

Dropnet getting access token cant peform 3rd step of 0auth

Hi guys im trying to use dropnet as means to be using dropbox as a cloud storage for my application, and following the 3 step process using the normal 0auth 1.Get Request Token[done] 2.Send user for authorization, and get back verifier[done] 3.Get…
sherrez
  • 45
  • 2
  • 8
0
votes
1 answer

DropNet Login Test

So I'm just testing out the DropNet client for a new .net application I'm developing and I'm just trying to login by doing this private void button1_Click(object sender, EventArgs e) { _client.GetTokenAsync((userLogin) => { …
Rob Gleeson
  • 315
  • 1
  • 5
  • 17
0
votes
1 answer

Has anyone successfully integrated Dropbox into a Windows 8.1 Store app, and how?

I have a Windows Store app targeted for Windows 8.1 and I need to integrate Dropbox. As of now there is still no official Dropbox SDK. They list some options here. Some of those SDK's have not been touched in years which is disconcerting. I also…
Ty Jacobs
  • 218
  • 1
  • 9
0
votes
0 answers

Dropnet code in vb not working

I'm trying to use dropnet for file upload on Dropbox in vb, but does not work. Results the following error: Received Response [Unauthorized]: Expected to see [OK]. The HTTP response was [{"error": "Request token not found."}] Here is my…
0
votes
2 answers

DropNet Authentication without prompts and File Sharing

Couple of questions: I implemented the authentication process with DropNet. My desktop application is designed for end-users. Every time the application is launch the little browser window pops up asking the user to confirm access... Is there any…
0
votes
1 answer

Downloading a file using DropBox API (with DropNet)

I'm doing a dropbox app. It uses DropNet, the problem is when I try to download a file from the App's folder, it returns the json: {"error": "Given request root of "dropbox" but app is an App Folder app."} That's my code: static void…
blez
  • 4,939
  • 5
  • 50
  • 82
0
votes
0 answers

DropNet Chunked Upload

The current version of DropNet (1.8.2.0) seems to be handling the REST portion of things fine, but when I call the final CommitChunkedUpload to complete the upload, I get a dropbox error indicating that the path parameter was in the wrong…
0
votes
1 answer

Is it possible to programmatically get a shared Dropbox link without sending the user to the dropbox login page?

I’m developing a web application in vb.net 4.5 and using the third party library: Dropnet. I’m wondering if is it possible to get a shared link from dropbox- programmatically- without having the user to login to dropbox. thanks in advance!
user3378165
  • 6,546
  • 17
  • 62
  • 101