在google docs api中导出文档时出错

时间:2012-06-04 16:17:32

标签: java oauth google-docs google-docs-api

我正在尝试检索这样的文档:

  client.setAuthSubToken(token);
  String contentUri = "https://docs.google.com/feeds/download/documents/Export?docID="+ entry.getDocId()
                            + "&exportFormat=txt&format=txt";

  MediaContent mc = new MediaContent();
  mc.setUri(contentUri);

  MediaSource ms = client.getMedia(mc);
  InputStream inStream = ms.getInputStream();

但是我得到了下一个错误:

com.google.appengine.repackaged.org.apache.http.impl.client.DefaultRequestDirector handleResponse ADVERTENCIA: Authentication error: Unable to respond to any of these challenges: {authsub=WWW-Authenticate: AuthSub realm="https://www.google.com/accounts/AuthSubRequest"}

不要为什么如果我的客户经过身份验证,希望有人可以帮助,提前谢谢。

1 个答案:

答案 0 :(得分:0)

也许这会有所帮助:

  1. docId 参数替换为 id 参数

    contentUri = "https://docs.google.com/feeds/download/documents/export/Export?id=" + entry.getDocId() + "&exportFormat=txt&format=txt";
    
  2. 直接使用获取uri的方法(建议这样做)

    String contentUri = ((MediaContent) entry.getContent()).getUri();
    contentUri = contentUri + "&exportFormat=txt&format=txt";