简体   繁体   English

Google Apps 脚本应用程序发布到 Google Apps 市场

[英]Google apps script application publish to google apps marketplace

Can I publish google apps script application to google apps marketplace?我可以将谷歌应用程序脚本应用程序发布到谷歌应用程序市场吗?

Thanks.谢谢。

EDIT: You can now do that officially: Follow this link: https://developers.google.com/apps-script/guides/domain-wide-web-app编辑:您现在可以正式执行此操作:点击此链接: https : //developers.google.com/apps-script/guides/domain-wide-web-app

I think you can.我想你可以。 (I haven't tested yet),... (我还没有测试过),...

Basically the "zip package" of a Google Script is conformed with two elements:基本上,Google Script 的“zip 包”符合两个元素:

  • An icon.一个图标。
  • A manifest file, which contents is this:一个清单文件,其内容是这样的:

     { "update_url": "https://clients2.google.com/service/update2/crx", "name":"***NAME_OF_APP***", "description":"", "version":"10", "app": { "urls":["***URL_TO_PUBLISHED_WEBAPP***"], //Is like a normal WebApp, or it's something more than that? "launch": { "web_url":"***URL_TO_PUBLISHED_WEBAPP***" } }, "icons":{"128":"script-icon.png"},"manifest_version":2

    } }

So, you must set the Marketplace manifest tags ( api_console_project_id, container, something more?)...因此,您必须设置 Marketplace 清单标签(api_console_project_id、container 等等?)...

I have my doubts about the last step of the publishing process (Fill out the Google Apps Marketplace Listing Review Request), beacuse it asks an screen capture video of your application demonstrating usage of OAuth 2.0 login and meaningful integration with Google APIs... I'ts already integrated in GAS, so i don't know what to do here about that ( and look if Google approves a GAS-made app or not).我对发布过程的最后一步(填写 Google Apps Marketplace 列表审核请求)有疑问,因为它要求您的应用程序的屏幕截图视频演示 OAuth 2.0 登录的使用以及与 Google API 的有意义的集成......我'ts 已经集成到 GAS 中,所以我不知道该怎么做(看看谷歌是否批准了 GAS 制造的应用程序)。

Hope it helps :)希望能帮助到你 :)

No you cant.不,你不能。 You can publish to the chrome web store.您可以发布到 Chrome 网上应用店。 Look up the gas documentation its explained there.查找在那里解释的气体文档。

我想你可以,提供网络应用程序 Url 你只需要完成整个宣言的事情

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 是否可以将 Google Apps Script Web App 发布到 G Suite Marketplace? - Is it possible to publish a Google Apps Script Web App to G Suite Marketplace? 如何将 Google Apps Script Web 应用程序发布到 G-Suite Marketplace? - How to publish a Google Apps Script web app to the G-Suite Marketplace? 找不到在 Google Workspace Marketplace 之前编写的 Google Apps 脚本 - Cannot find Google Apps Script written before Google Workspace Marketplace 如何使用Google Apps脚本将图表发布到网络 - How to publish a chart to the web with google apps script Google Apps 脚本中文档的“发布到网络”? - "Publish to the web" for Document in Google Apps Script? 如何将google apps脚本发布到公共云? - How to publish google apps script to cloud for public? 如何发布谷歌应用脚本网站 - How to publish google apps script website 将Google Apps脚本作为Web应用程序发布与将其作为服务发布 - Publish Google Apps Script as a Web App vs. publish it as a Service 如何通过Google Apps脚本发布Google幻灯片演示文稿? - How to publish a Google Slides presentation from Google Apps Script? Google Apps脚本-发布Google文档和阅读网址 - Google Apps Script - publish google documents and read urls
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM