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…
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…
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…
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 {…
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…
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…
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…
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…
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) =>
{
…
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…
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…
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…
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…
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…
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!