We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
depotsy
6 months agoExplorer | Level 3
Direct file upload to Dropbox
Hello! I'm writing a small Node.js web app to upload files to Dropbox. Login to the application will be via Dropbox OAuth. After this the user will be able to send files to my shared folder ...
Greg-DB
6 months agoDropbox Staff
depotsy As Здравко said, you can implement uploads client-side.
And while you don't need to use an official SDK, we do recommend doing so if possible. For example, the official Dropbox JavaScript SDK supports running in client-side browser JavaScript.
There are a few options for uploading to the user's own Dropbox account:
- filesUpload for smaller files
- filesUploadSessionStart, etc. for larger files
- filesSaveUrl (or the Dropbox Saver) for smaller files hosted at URLs
Or if don't want to rely on them having a shared folder with you, you can use copy references to copy files between accounts:
- filesCopyReferenceGet on the file in the user's account, and then
- filesCopyReferenceSave in your account
Or if you don't want to rely on the user having their own Dropbox account at all, there is an option for client-side uploading to your own account without exposing your access token to the user:
- filesGetTemporaryUploadLink for smaller files; you would run this server-side in your account, then pass the link to the user's browser and upload to the link from there
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 9 hours agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!