Thanks for TheMaster reply.
I add Slides service and test. I understand.
but i rewrite my app to use advanced slides service is difficult...
Publish add-on script is very difficult.
function createPresentation() {
try {
const presentation =
Slides.Presentations.create({'title': 'MyNewPresentation'});
console.log('Created presentation with ID: ' + presentation.presentationId);
return presentation.presentationId;
} catch (e) {
// TODO (developer) - Handle exception
console.log('Failed with error %s', e.message);
}
}