Status Update
Comments
ja...@google.com <ja...@google.com> #2
Hi, thanks for reporting this. For now this is expected as nested scrolling is only activated through gesture based scrolling, not animation based scrolling. We do have plans to explore animation based nested scrolling in the future, so I'll keep you posted if things change. Closing this ticket for now as this is WAI.
Description
I have written a new Google Sheets script and I am unable to run the script because of the following error:
"Sign in with Google temporarily disabled for this app
This app has not yet been verified by Google in order to use Google Sign in."
This is the script:
function getoutstandingordersCSV() {
var thread = GmailApp.getUserLabelByName('Outstanding Orders').getThreads(0,1);
var message = thread[0].getMessages();
var attachments = message[message.length - 1].getAttachments(); // Get attachment of first message
var csv = attachments[0].getDataAsString('UTF-16');
var data = Utilities.parseCsv(csv);
var a = data.length ;
var b = data[0].length;
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = SpreadsheetApp.openById('1QvI54dFJB1Xarx6KfR8kF6_ImEP-h8LifZphRpPocmY').getSheetByName('Outstanding Orders Summary');
sheet.clearContents();
var range = sheet.getRange(3,1, data.length,data[0].length);
range.setValues(data);
}
Normally, I should expect to receive the unverified app alert message a show in Google Support here:
However, this app is still under development and will not be public facing so it does not need to be verified. I am only using it for my own Google Sheet and my own Gmail. I should have the option to proceed but this is no longer present.