Dropbox file list using REST API

I want to list all the folder files from my own Dropbox account on my website. I was going to use the C # and Dropbox Rest API, but, reading the documentation, it seems that I can not do this without first getting the user to go to Dropbox to get the authorization token.

It is right? Is there anyway I can return the data in the code without asking the user to enter?

+5
source share
1 answer

Not really.

First you need to authenticate with OAuth and get a list of files. Documentation here

Just like the tutorial here:

http://cgeers.com/2011/12/29/dropbox-rest-api-part-1-authentication/ http://cgeers.com/2012/01/08/dropbox-rest-api-part-2-api-requests/

+8

All Articles