使用 API KEY 连接 Google AutoML API 时出错

Error connecting Google AutoML API with API KEY

我正在尝试使用邮递员下面的 link 在 API 中连接

POST https://automl.googleapis.com/v1/projects/*****/locations/us-central1/models/*****:predict?key=*****

但我收到以下消息:

{
  "error": {
    "code": 401,
    "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
    "status": "UNAUTHENTICATED"
  }
}

KEY 被授权使用 API.

只有有限数量的Google API可以通过API键使用,看here。 我认为 AutoML API 不支持基于密钥的访问。

对于 Postman,您可以使用 OAuth2 playground 生成访问令牌,但如果您要开发集成,服务帐户凭据是必经之路:)