我正在使用 Google 云平台,现在我想使用 API。我使用了他们网站尝试 API 调用,但每次我输入我的项目 ID,它都会得到这样的响应
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalidParameter",
"message": "Invalid value ' <myProject-id>'. Values must match the following regular expression: '(?:(?:[-a-z0-9]{1,63}\\.)*(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?):)?(?:[0-9]{1,19}|(?:[a-z0-9](?:[-a-z0-9]{0,61}[a-z0-9])?))'",
"locationType": "parameter",
"location": "project"
}
],
"code": 400,
"message": "Invalid value ' <myProject-id>'. Values must match the following regular expression: '(?:(?:[-a-z0-9]{1,63}\\.)*(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?):)?(?:[0-9]{1,19}|(?:[a-z0-9](?:[-a-z0-9]{0,61}[a-z0-9])?))'"
}
}
我通过进入我的项目设置获得了我的项目 ID,在那里我看到了项目 ID:所以我使用了该 ID,这可能是错误的 ID 吗?