应用程序似乎不符合Google Workspace Marketplace要求

问题描述 投票:0回答:1

我们正在尝试将我们的应用程序部署到

Google workspace marketplace
,但我们遇到了一个问题,那就是我们的应用程序被谷歌拒绝(当我们尝试添加谷歌驱动器功能时) 尽管在我们的测试部署中一切正常 我们联系了谷歌支持,他们说由于以下明显问题,该应用程序未在附加栏中注册

另请注意,所有数据均填写在 https://console.cloud.google.com 关于gmail和drive sdk

•   The App doesn’t meet the publishing review criteria on the following:
  1.    Integration selected is not shown when configuring the Deployment ID in Marketplace 
        SDK and therefore is not shown in the Sidebar once the App is installed.
        In general this issue is caused by a problem in the definition of the manifest file 
        where the host specifics are not defined correctly so the Google Workspace Add-on does 
        not identifies in which product it needs to open.

以下是提供的清单文件

{
  "timeZone": "America/New_York",
  "dependencies": {},
  "webapp": {
   "executeAs": "USER_ACCESSING",
   "access": "ANYONE"
},
 "exceptionLogging": "STACKDRIVER",
 "oauthScopes": [
   "https://www.googleapis.com/auth/gmail.addons.current.message.readonly",
  "https://www.googleapis.com/auth/gmail.addons.execute",
  "https://www.googleapis.com/auth/script.external_request",
   "https://www.googleapis.com/auth/script.locale",
   "https://www.googleapis.com/auth/drive.readonly",
  "https://www.googleapis.com/auth/drive.addons.metadata.readonly"
 ],
"urlFetchWhitelist": [
  "https://api.atlassian.com/",
  "https://auth.atlassian.com/",
  "https://id.atlassian.com/",
  "https://*.atlassian.net/",
  "https://*.atlassian.com/",
  "https://googletojirabackend.azurewebsites.net/",
  "https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-myself/#api-rest-api-3-myself-get"
],
"runtimeVersion": "V8",
 "addOns": {
"common": {
  "name": "GTJ Jira Connector",
  "logoUrl": "https://infosysta-apps.com:444/jiraforgmail/icon/gtj.png",
  "useLocaleFromApp": true,
  "openLinkUrlPrefixes": [
    "https://*.atlassian.net",
    "https://*.atlassian.com"
  ],
  "universalActions": [
    {
      "label": "Settings",
      "runFunction": "buildSettingsCard"
    }
  ]
},
"gmail": {
  "contextualTriggers": [
    {
      "unconditional": {},
      "onTriggerFunction": "onGmailMessage"
    }
  ],
  "primaryColor": "#363dfc",
  "secondaryColor": "#4285F4"
},
"drive": {
  "onItemsSelectedTrigger": {
    "runFunction": "onDriveItemsSelected"
  },
  "homepageTrigger": {
    "runFunction": "onHomepage"
    }
   }
  }
 }
google-apps-script google-apps-marketplace
1个回答
0
投票

我们也面临同样的问题。 @ingebrigt-nygård 你解决了吗?你能提供线索吗?

© www.soinside.com 2019 - 2024. All rights reserved.