Android 从Google Drive下载文件时出现问题

Android 从Google Drive下载文件时出现问题,android,google-drive-api,Android,Google Drive Api,上次我从Google Drive下载文件时遇到问题(尽管以前它工作正常) 它甚至不在活动中运行,用于数据处理。然后在日志中显示以下摘录: java.io.IOException: Network Error Could not update entry https://docs.google.com/feeds/default/private/full/file%3A0B2rp3fzjxgqkMi1mSFJIMFVSN28: Received 500 status code: <erro

上次我从Google Drive下载文件时遇到问题(尽管以前它工作正常)

它甚至不在活动中运行,用于数据处理。然后在日志中显示以下摘录:

java.io.IOException: Network Error Could not update entry https://docs.google.com/feeds/default/private/full/file%3A0B2rp3fzjxgqkMi1mSFJIMFVSN28: Received 500 status code: <errors xmlns='http://schemas.google.com/g/2005'><error><domain>GData</domain><code>ServiceException</code><internalReason>An unknown error occurred.</internalReason></error></errors>

我决定做一个这样的应用程序来测试,使用;然而,我得到了同样的结果。也许有人以前有过这样的经历?请指导我正确的方向。

您使用的是几天前被弃用的docsList api。将代码迁移到驱动器api。在s.o.和谷歌官方文档中都有很多关于它的问题。

谢谢你,你帮了我很多忙。