3

多年来,我一直在使用 Google Apps Script 中的Google Enterprise License Manager API成功地将 G Suite 许可证分配给用户。自上周五 20 年 4 月 24 日以来,我一直Invalid JSON payload从 API 收到错误消息。

我创建此对象以插入许可证分配:

{
  "userId": "user@domain.com",
  "productId": "Google-Apps",
  "skuId": "Google-Apps-Unlimited"
}

我用来UrlFetchApp从 Google Apps 脚本调用 API:

{
  "url": "https://www.googleapis.com/apps/licensing/v1/product/Google-Apps/sku/Google-Apps-Unlimited/user",
  "validateHttpsCertificates": true,
  "followRedirects": true,
  "payload": "{\"userId\":\"user@domain.com\",\"productId\":\"Google-Apps\",\"skuId\":\"Google-Apps-Unlimited\"}",
  "useIntranet": false,
  "headers": {
    "Authorization": "Bearer ya29.xxxx",
    "X-Forwarded-For": "x.x.x.x"
  },
  "method": "post",
  "contentType": "application/json"
}

通常这是可行的,但现在我已经收到了这个回复:

{
  "error": {
    "code": 400,
    "message": "Invalid JSON payload received. Unknown name \"productId\" at 'body': Cannot find field.\nInvalid JSON payload received. Unknown name \"skuId\" at 'body': Cannot find field.",
    "errors": [
      {
        "message": "Invalid JSON payload received. Unknown name \"productId\" at 'body': Cannot find field.\nInvalid JSON payload received. Unknown name \"skuId\" at 'body': Cannot find field.",
        "reason": "invalid"
      }
    ],
    "status": "INVALID_ARGUMENT"
  }
}

我已经确认:

  • 我们的域有 G Suite Business 许可证,我的帐户是超级管理员帐户,并且我在 GCP 控制台中启用了 Enterprise License Manager API。

  • 我正在使用此处定义的正确 API 端点 URL 和路径参数:LicenseAssignments: insert

  • userIdproductId并且skuId包含在 JSON 有效负载中

  • 我正在使用正确的productIdskuId我们在此处定义的域:Google 产品和 SKU ID

  • 该用户存在于我们的 G Suite 域中

  • 这会影响我测试过的多个用户,包括有和没有当前许可证分配的用户

根据 Google 的开发人员指南,我在这里都提出了这个问题,并在 Google Apps Script IssueTracker 中提交了一个问题。

4

1 回答 1

1

根据文档,有效载荷应该只包含userId. productId并且skuId只是路径参数并将其包含在 url 中就足够了。

请求正文:

{
  "userId": string
}
于 2020-04-28T19:03:35.770 回答