Reputation: 73
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
Reputation: 3170
You could always use this API:
https://www.dropbox.com/developers/core/docs#files_put
Upvotes: 1