Is it possible to publish a Google Apps Script Web App to G Suite Marketplace?

纵然是瞬间 提交于 2020-01-11 06:16:51

问题


I know it is possible to publish a Google Script Web App to Chrome Web Store, but it's possible to publish in Google Suite Marketplace?

There's no "Publish to Marketplace" option in GAS editor, but I've looked at a Google Script-based apps manifest files from Chrome Web Store, and I think there's a possibility to do it.

Unfortunately, I have some troubles with the last step of publishing (filling out the Google G Suite Marketplace Listing Review Request) so I'm not sure if a Google Script-based app complies with the G Suite Marketplace requirements

In fact, a GAS manifest file from Chrome Web Store looks like 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, what do you think?


回答1:


Yes, now you can!

This feature became active not so long ago, but now you can publish Google Script Web Apps to G Suite Marketplace.
Google Developers website has a good how-to instruction on this topic.



来源:https://stackoverflow.com/questions/21261990/is-it-possible-to-publish-a-google-apps-script-web-app-to-g-suite-marketplace

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!