Hi,
in our application we get a feed list of documents using
https://docs.google.com/feeds/default/private/full, than we iterate on a list and trying to download document using code below :
final MediaSource source = client.getMedia(mediaContent);
MediaSource.Output.writeTo(source, outputStream);
on one of the documents throws com.google.gdata.util.ResourceNotFoundException
how can we figure out what is the problem? Is there any other way to download a document using Google API?
thanks,
Leon