I'll get help.
Need to download files from Google Cloud Storage.
I need to save the files to Disc, or load the contents of file.txt
I managed to retrieve information.
But I need content.
function infoFileFromStorage() {
var response = UrlFetchApp.fetch(url, {
method: "POST",
headers: {
Authorization: 'Bearer ' + service.getAccessToken()
},
muteHttpExceptions: true,
});
Logger.log("response");
Logger.log(response);
}
Thanks!
Venca