上传图片时出现Dropbox API错误(Python)

时间:2017-07-05 09:29:18

标签: python dropbox

我目前正在做一个运动检测程序。我已经设法在检测到运动时捕获图像。我想要在拍摄时将照片上传到Dropbox。它适用于前几张图片,但一段时间后停止工作。它显示以下错误

  

ApiError:ApiError('',UploadError(你'路径',UploadWriteFailed(原因= WriteError(你'冲突',WriteConflictError(你'文件&# 39;,无)),upload_session_id = u'')))

这是我的代码

def TakePicUpload(avg):

1 个答案:

答案 0 :(得分:2)

您收到了file WriteConflictError

https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.files.WriteConflictError

记录为:

  

路上有一个档案。

所以,这只是意味着您已尝试上传的路径(savetolocation)。

如果您不想要,可以删除该文件,或者在调用files_upload时指定其他写入模式:

https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_upload