我正在关注AutoML object detection的快速入门。不幸的是,我遇到了我无法弄清的错误。在第一个curl命令
curl -X POST \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
"https://automl.googleapis.com/v1beta1/projects/$PROJECT_ID/locations/us-central1/datasets" -d '{
"display_name": "dataset_name",
"image_object_detection_dataset_metadata": {
}
}'
我收到此错误:
{
"error": {
"code": 400,
"message": "List of found errors:\t1.Field: parent; Message: Required field is invalid\t",
"status": "INVALID_ARGUMENT",
"details": [
{
"@type": "type.googleapis.com/google.rpc.BadRequest",
"fieldViolations": [
{
"field": "parent",
"description": "Required field is invalid"
}
]
}
]
}
}
这似乎是某种模式验证错误,因此也许他们更改了请求正文格式,但我不知道如何更改它。
答案 0 :(得分:0)
Doh,事实证明PROJECT_ID
变量实际上没有设置。
在GCP中,您使用API时有时会得到非常神秘的错误。