just over the weekend I've been having issues downloading the whole
code when i download an html file. im using javascript:
var gurl = "/proxy/docs.google.com/feeds/download/documents/Export?
docID="+docID+"&exportFormat=html";
var http = new XMLHttpRequest();
http.open('GET', gurl, true);
http.setRequestHeader("Authorization", "GoogleLogin
auth="+authToken);
http.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200){
HTMLtxt = http.responseText;
}
};
http.send(null);
this is the call i'm making. all i get back in the http.responseText
is the body html code. i dont get the <head> tag anymore or the
overall <html> tag. is anyone having this problem.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---