从独立 Google Apps 脚本发布插件
Publish an add-on from Standalone Google Apps script
我开发了一个 google sheet 插件,我已经从 Google sheet 绑定脚本成功发布了该插件,即来自 tools ->脚本编辑器。
但是如果我直接制作googleapps脚本项目(独立项目),我无法发布它,并且弹出通知
我研究我需要它来从 google 控制台设置它,发布独立的 google 应用程序脚本到附加组件,但我没有找到继续的确切选项。
要为 G Suite 文档编辑器发布插件,请按照此处的说明进行操作
https://developers.google.com/gsuite/add-ons/how-tos/publishing-editor-addons
关于GCP项目的具体部分是
Technical
- The add-on script project must use a standard Cloud Platform (GCP) project. If the script project currently uses a default GCP project, you must switch to a standard GCP project. All collaborators working on the add-on should have access to the standard GCP project.
对于初学者来说,该说明非常令人困惑。 Google 不断将您重定向到描述发布编辑器插件的页面,但您真正需要的是描述如何在云平台上创建项目的页面。
https://cloud.google.com/resource-manager/docs/creating-managing-projects#creating_a_project
步骤:
- 使用上述 link 中的说明创建项目并获取项目编号
- 转到你的脚本。 Select 在菜单 Resources > Cloud Platform projects... 中输入您的项目编号
- 然后 google 会要求您设置 OAuth
- 之后,您就可以将您的脚本移动到云平台并发布了。
我开发了一个 google sheet 插件,我已经从 Google sheet 绑定脚本成功发布了该插件,即来自 tools ->脚本编辑器。
但是如果我直接制作googleapps脚本项目(独立项目),我无法发布它,并且弹出通知
我研究我需要它来从 google 控制台设置它,发布独立的 google 应用程序脚本到附加组件,但我没有找到继续的确切选项。
要为 G Suite 文档编辑器发布插件,请按照此处的说明进行操作
https://developers.google.com/gsuite/add-ons/how-tos/publishing-editor-addons
关于GCP项目的具体部分是
Technical
- The add-on script project must use a standard Cloud Platform (GCP) project. If the script project currently uses a default GCP project, you must switch to a standard GCP project. All collaborators working on the add-on should have access to the standard GCP project.
对于初学者来说,该说明非常令人困惑。 Google 不断将您重定向到描述发布编辑器插件的页面,但您真正需要的是描述如何在云平台上创建项目的页面。
https://cloud.google.com/resource-manager/docs/creating-managing-projects#creating_a_project
步骤:
- 使用上述 link 中的说明创建项目并获取项目编号
- 转到你的脚本。 Select 在菜单 Resources > Cloud Platform projects... 中输入您的项目编号
- 然后 google 会要求您设置 OAuth
- 之后,您就可以将您的脚本移动到云平台并发布了。