我正在尝试使用 GoodData REST API 创建报告定义。我使用以下端点来调用 rest 调用。
“/gdc/md/{project-id}/obj”
当我尝试使用 projectId 和 userId 有效的以下数据集调用 API 调用时,它给了我响应代码 500 的错误。
{
"reportDefinition": {
"content": {
"filters": [],
"format": "grid",
"grid": {
"rows": [],
"columns": [
"metricGroup"
],
"sort": {
"columns": [],
"rows": []
},
"columnWidths": [],
"metrics": [
{
"uri": "/gdc/md/qy48iv4flikdlcwpwioizuip74wt8nb5/obj/63f3cecd2a8d3ce2ec9378381c8f39e3",
"alias": ""
}
]
}
},
"meta": {
"title": "Sample report definition",
"summary": "This is a sample report",
"tags": "",
"deprecated": 0,
"category": "samplecategory"
}
}
}
{
"error": {
"message": "Internal server error. Please fill in bug report with request_id='lp78FL5S1IPMqB2n'"
}
}
我确定用户 project_id 和 user_id 是有效的。这是 API 中的错误吗?
先感谢您。