Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
upload
21 TopicsError 500 finishing huge file upload (300GiB+)
Hello, When a huge file (300GiB+) is uploaded using the upload_session API an "Error 500 Internal Server Error" is received when the last part is uploaded (/upload_session/append with close set). I retry the request but an Error 500 raises again and again. Sometimes, after more than 1 hour retrying the file uploads successfully. I am using session_type sequential. The same code for smaller files (10GiB) works perfectly. Are you aware of the problem? Is there any workaround?1KViews0likes7CommentsSingle API call creating duplicate file versions using Dropbox .Net Api
Hi Dropbox Support, I'm experiencing an issue with the Dropbox .NET API where a single file upload API call is creating two identical versions of the same file with the following problems: Problem details: Using Dropbox .NET API for file uploads One API request results in two file versions created 1ms apart Different attribution: One version shows "edited by user on web", the other shows "edited by user on API app" All uploads are done through API only - no web interface involvement This happens inconsistently - some files upload normally, others create duplicates API methods used: For small files: uploadArg = gcnew Dropbox::Api::Files::UploadArg(dropboxPath, Dropbox::Api::Files::WriteMode::Overwrite::Instance, false, clientModified, true, nullptr, false, nullptr); uploadTask = m_dropboxclient->Files->UploadAsync(uploadArg, fileStream); For large files: task = m_dropboxclient->Files->UploadSessionFinishAsync(cursor, commitInfo, nullptr, fileChunk);110Views0likes2Comments409 no_write_permission
Hi, I am using dropbox in n8n and have connected a dropbox team account. But I am getting 409 no_write_permission error. It was working fine a few days earlier but now I am getting this error for no reason. I changed nothing in n8n, nor in my dropbox settings. It was working fine a few days ago. It happened before too, and it got resolved after reconnecting and create a new node. But I am getting the same error again. Why am I getting this error and what is the fix. Please help me out! complete error: 409 - "{\"error_summary\": \"path/no_write_permission/.\", \"error\": {\".tag\": \"path\", \"reason\": {\".tag\": \"no_write_permission\"}, \"upload_session_id\": \"pid_upload_session:ABIJdIKguQwyyRnlJPP0VU6cKu7yvOT0Xo4yZCllqv3074TJtg\"}}"Solved271Views0likes5CommentsDropbox max file size
It seems that the maximum size of a file uploaded (from the desktop application) to dropbox is 2TB. How can I get around this limitation? Does using the API allow this? I have very large files to transfer. Thanks for your help! On the Dropbox desktop app Files and folders uploaded on the Dropbox desktop app can be up to 2 TB each.234Views0likes4Commentsapi file request set naming convention
HI, There is currently no way to set the naming convention when creating a file request through the API. Therefore the uploader name is added to the file automatically and we have no say about it. The idea to implement the option to set the naming convention through the api https://api.dropboxapi.com/2/file_requests/create or setting a default naming convention for file request could also work. Related threads : - File Request API | The Dropbox Community - Rest API: naming conventions for new file request | The Dropbox Community142Views1like3Commentsupload file to my dropbox from python script
I want to upload a file from my python script to my dropbox account automatically. I can't find anyway to do this with just a user/pass. Everything I see in the Dropbox SDK is related to an app having user interaction. I just want to do something like this: https://api-content.dropbox.com/1/files_put//?user=me&pass=blah114Views0likes1CommentDropbox Saver API to accept more than 100 files
We really love the Saver component, but hesitant to roll out to our users due to this comment on the API documentation. You can specify up to 100 files. Is this a hard-cap or is there a way for us to upload more files in one save call? Would also love to hear for a workaround if there is any. Thank you.DropboxAPI uploading small files
Hi! I ask for help in solving my problem. I have a Python script that runs on about 500 PCs. After running, each script writes a text file with a size of 60 bytes (approximately) and uploads it to my Dropbox folder. And I ran into such a problem that the created files can be uploaded to Dropbox indefinitely. Sometimes the file can load after 10 minutes, and sometimes after 2 hours or more. I can't figure out what this is related to, please help me figure it out. Here is a piece of my code where a file is created and uploaded to Dropbox.165Views0likes1Comment