Hi!
I am uploading files via the temporarily upload links generated via the /get_temporary_upload_link call. This all works fine, but the POST upload call to the generated upload link (e.g. https://dl.dropboxusercontent.com/apitul/1/bNi....) is terminated for files larger than a certain limit.
> POST /apitul/1/bNi.... HTTP/1.1
Host: dl.dropboxusercontent.com
Accept: */*
Content-Length: 536871142
Expect: 100-continue
Content-Type: multipart/form-data; boundary=------------------------b315544e35df5ae3
< HTTP/1.1 413 Request Entity Too Large
< Server: nginx
< Date: Tue, 12 Mar 2019 10:10:15 GMT
< Content-Type: text/html
< Content-Length: 25658
< Connection: close
< ETag: "5c816ae0-643a"
< X-Dropbox-Request-Id: 9600532cf40be9d1ae39f8cdd6182848
< X-Robots-Tag: noindex, nofollow, noimageindex
< Strict-Transport-Security: max-age=15552000; includeSubDomains
<
* Closing connection 0
This test-file-200MB works fine but this larger test-file-512MB isn't working. The receiving Dropbox account has enough space available to store the large file.
Are there any uploads limits? If there are limits, is there another way to upload files to upload large files via the API without the need of an authorization token?
I appreciate if anyone can help me out with this issue.
Cheers!