We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.

Forum Discussion

De L.1's avatar
De L.1
Collaborator | Level 9
6 years ago

Large uploads via /get_temporary_upload_link are terminated with '413 Request Entity Too Large'

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://...
  • Greg-DB's avatar
    6 years ago

    Unfortunately, the links returned by get_temporary_upload_link do have a file size limit, as you found. Apologies this isn't better documented! I'll ask the team to clarify this.

    There isn't an alternative though, so that does mean that in this case, to upload large files, you'd need to either give the access token to the client to perform the upload session calls client-side (which isn't recommended for untrusted clients, of course), or send all of the data to upload through your server to perform the upload session calls there.

    I'll also send this along as a feature request for a 'get_temporary_upload_link'-like version of upload sessions to support uploading large files without direct access to the access token, but I can't promise if or when that would be implemented.