Closed GoogleCodeExporter closed 8 years ago
Here's the fix.
Google.Documents.Document.Download()
has this line
queryUri = baseDomain + "feeds/download/documents/Export?docID=" +
document.ResourceId + "&exportFormat=" + type.ToString();
That doesn't work. This does:
queryUri = baseDomain + "feeds/download/documents/export/Export?id=" + document.ResourceId.Replace("document:", "") +"&exportFormat=" + type.ToString();
Original comment by mhenry1...@gmail.com
on 9 Nov 2010 at 4:33
I just tested this with the latest release and it is working correctly.
Original comment by ccherub...@google.com
on 15 Dec 2010 at 12:18
Original issue reported on code.google.com by
trentmhe...@gmail.com
on 8 Nov 2010 at 10:43