Using scripts in google tables, I work with google forms. Using my main account, which is located in the domain of the organization to which I belong, everything is fine.
When I use the new Google account, then the script crashes with an error:
"This operation is not supported." In the Google tab: "Security Check" on the second account, the application is indicated as made by "Unverified Developer".
An error occurs when trying to edit a form created by a script.
The code is called by a POST
request with JSON parameters. Queries are allowed to anonymous users.
I tried to check the box to enable unverified applications
var form = FormApp.create(NewForm.name);
form.setRequireLogin(false)
.setDestination(FormApp.DestinationType.SPREADSHEET, ss.getId())
.setDescription(NewForm.description)
.setConfirmationMessage('Спасибо за ваши ответы!');
expect the script to work without errors