-2

基本上我得到了这个错误......

java.lang.NullPointerException: Null response body
com.google.gdata.util.ServiceException.setResponse(ServiceException.java:222)
    at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:572)
    at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:560)
    at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:538)
    at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:536)
    at com.google.gdata.client.media.MediaService.insert(MediaService.java:400)

我正在使用该gdocs-3.0库,它似乎在运行时都可以正常工作,除了在执行文件上传时失败。我正在使用 OAuth2 凭据系统,这可能是问题的原因吗?是因为我上传的是 mp3 之类的内容而不是文档吗?

是否有更好的库来访问文档列表 api 或者是这个?

4

1 回答 1

1

原来我得到这个的原因是我的应用程序不想上传大文档,而是需要使用可恢复的媒体上传。

于 2012-06-13T07:05:18.710 回答