sheet.getProtections no longer works?

拥有回忆 提交于 2020-02-09 06:01:32

问题


I have a script that automatically protects a range of past Dates in my Sheet.

I use the standard sheet.getProtections(SpreadsheetApp.ProtectionType.RANGE);

It worked fine for several months but it has not worked since yesterday.

Is there any modifications on the implementations ?

Thank you

PS : the sheet object is well returned in my tests

var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("TRAVAUX");
var debug = sheet.getName();
var protections = sheet.getProtections(SpreadsheetApp.ProtectionType.RANGE);

Error message when running the function

Service error: Spreadsheets


回答1:


There seem to be several developers with this problem, it might be a bug or a temporary problem.

The issue has been reported on Public Issue Tracker. Give it a "star" to indicate that you are also affected.



来源:https://stackoverflow.com/questions/60092877/sheet-getprotections-no-longer-works

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!