根据https://cloud.google.com/resource-manager/docs/authorizing,可以使用API密钥授权请求。我无法让它发挥作用。
这是我的要求:
curl -H "Content-Type: application/json" -X POST -d '{"key":"<Some Key>"}' https://cloudresourcemanager.googleapis.com/v1beta1/projects
响应:
{
"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"
}
}
任何帮助都非常感谢。
答案 0 :(得分:-1)
对于任何非公开的oAuth2信息请求都是必需的。因此,从某种意义上讲,该文档具有误导性,因为API密钥对于此类请求无效。
您还可以通过选择特定的调用并使用“尝试此API”来检查特定的api调用需要哪种授权
这里是另一个堆栈溢出问题的链接,并给出了一个答案,解释了从这里出发的地方