如何在 google sheet 自定义函数中使用 FormApp.create?

How can I use FormApp.create in a google sheet custom function?

我想在 google sheet 中创建一个自定义函数,以便它可以将 sheet 的数据作为函数的输入。输出将是创建的表单的 URL。我有 google 应用程序脚本,可以创建表单并生成 URL.

但是,当我尝试实现该功能时出现以下错误:

Exception: You do not have permission to call FormApp.create. Required permissions: https://www.googleapis.com/auth/forms 

我查看了其他帖子。但这就是行不通。

来自documentation

Unlike most other types of Apps Scripts, custom functions never ask users to authorize access to personal data. Consequently, they can only call services that do not have access to personal data[.]

FormApp.create 会通过在您的云端硬盘中创建内容来操纵您的个人数据,这将违反在自定义函数中使用 Apps 脚本服务的规则。