stoyanov
stoyanov

Reputation: 73

Upload file to dropbox without use local file path

I have the following problem:

I need to do the following thing -

client ---> api controller ---> dropbox

in that way should pass file as an opportunity not to be saved on the server, and here is my problem. Can I upload file to dropbox without use local file, is there any way to use byte array or memory mapped file?

Upvotes: 1

Views: 2697

Answers (1)

arghbleargh
arghbleargh

Reputation: 3170

You could always use this API:

https://www.dropbox.com/developers/core/docs#files_put

Upvotes: 1

Related Questions