AnaCifuentes
AnaCifuentes

Reputation: 35

How can I upload a file on dropbox without using a dropbox SDK in Java?

I know how to use dropbox API with dropbox core sdk:

dropboxClient.files().uploadBuilder("./").uploadAndFinish(inputStream);

But is there any possibilty to do so without using the sdk?

Upvotes: 1

Views: 215

Answers (1)

JoSSte
JoSSte

Reputation: 3372

You could roll your own methods and use the REST api they expose here: https://www.dropbox.com/developers/documentation/http/overview

Upvotes: 1

Related Questions