Discuss Dropbox Developer & API
Solved! Go to Solution.
[Cross-linking for reference: https/stackoverflow.com/questions/51606801/python3-dropbox-uploading-error-using-api-v2 ]
That error indicates that you're supplying an incorrect offset value for this upload session when uploading a chunk of data. The error includes the correct value, but you'll need to debug your code to see why you're not sending it in the first place. (I don't see where you update the offset value in your code, for example.)
There's a basic example of using upload sessions with the Python SDK here:
A 'path/conflict/file' error indicates that the upload failed because there is already a file at the specified path.
You should instead specify a different path, or supply a different WriteMode to to files_upload_session_finish in the CommitInfo to automatically handle the conflict.
[Cross-linking for reference: https/stackoverflow.com/questions/51606801/python3-dropbox-uploading-error-using-api-v2 ]
That error indicates that you're supplying an incorrect offset value for this upload session when uploading a chunk of data. The error includes the correct value, but you'll need to debug your code to see why you're not sending it in the first place. (I don't see where you update the offset value in your code, for example.)
There's a basic example of using upload sessions with the Python SDK here:
A 'path/conflict/file' error indicates that the upload failed because there is already a file at the specified path.
You should instead specify a different path, or supply a different WriteMode to to files_upload_session_finish in the CommitInfo to automatically handle the conflict.
The way we work is changing. Share and discover new ways to work smarter with Dropbox in our community.
Sound good? Let's get started.Hi there!
If you need more help you can view your support options (expected response time for a ticket is 24 hours), or contact us on Twitter or Facebook.
For more info on available support options, see this article.
If you found the answer to your question, please 'like' the post to say thanks to the user!