zaxtyson/LanZouCloud-API

上传文件失败

Opened this issue · 0 comments

上传文件时触发 JSONDecodeError,经分析是 core.py_upload_small_file( ... ) 出现问题:

        result = self._post('https://pc.woozooo.com/fileup.php', data=monitor, headers=tmp_header, timeout=3600)
        if not result:  # 网络异常
            file.close()
            return LanZouCloud.NETWORK_ERROR
        else:
            result = result.json()

按照 #90 的做法,将 https://pc.woozooo.com/fileup.php 改为 https://pc.woozooo.com/html5up.php 后问题解决。

烦请作者修复,感谢!