私は次のようなドキュメントを取得しようとしています:
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"}
私のクライアントが認証されている場合は、事前に感謝して、誰かが助けてくれることを願っています。