Since about an hour, I can\'t retrieve file content via the download URL attribute.
Each time I try to get it, API answers a 401 (unauthorized error).
Here\'s th
You can use
resp.alternateLink; resp.webContentLink;
i got stucked in the same issue a day back , using downloadUrl to get the content but got it with webContentLink.
var request = gapi.client.drive.files.list(); request.execute(function (resp) { resp.alternateLink; resp.webContentLink; });