Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Marvin D.
10 years agoExplorer | Level 3
Is there a constant or method that return the upload limit per request?
I'm writing an application and I trying not to hard code the upload request limit of 150 MB per request to my application. Is there a way retrieve that value? I wanted to know if Dropbox plan to raise that limit in the future.
That number isn't accessible programmatically, and it's actually not a strict limit anyway. Due to various other (mostly network) factors, smaller or larger file uploads may fail or succeed.
For larger files, you should use chunked uploading, and the size limit you use in your app to determine whether to use normal or chunked uploading is up to you, and should probably even be less than 150 MB. For example, if you know your app is often used with weak or unreliable network connections, you may want to choose a relatively small size.
We don't have any plans to change that limit. In API v2, the equivalent to chunked uploading is upload sessions:
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-start
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-append
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-finish
3 Replies
Replies have been turned off for this discussion
- Greg-DB10 years ago
Dropbox Community Moderator
That number isn't accessible programmatically, and it's actually not a strict limit anyway. Due to various other (mostly network) factors, smaller or larger file uploads may fail or succeed.
For larger files, you should use chunked uploading, and the size limit you use in your app to determine whether to use normal or chunked uploading is up to you, and should probably even be less than 150 MB. For example, if you know your app is often used with weak or unreliable network connections, you may want to choose a relatively small size.
- Marvin D.10 years agoExplorer | Level 3
On my Java Application, files over that limit throws an SSL Exception even though it sends the file successfully.my concern is whether Dropbox decide to raise that limit and that exception is no longer thrown after the 150MB. I only see the /chunked_upload in API v1. Will this continue to be supported in V2.
- Greg-DB10 years ago
Dropbox Community Moderator
We don't have any plans to change that limit. In API v2, the equivalent to chunked uploading is upload sessions:
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-start
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-append
https://www.dropbox.com/developers/documentation/http/documentation#files-upload_session-finish
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If 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, Facebook or Instagram.
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!