有什么方法可以使用 helidon 在单个 http 调用中组合多个休息请求?类似于下面的东西。
https://docs.microsoft.com/en-us/graph/json-batching
我尝试按照上述文档中提到的类似方式进行操作,但得到 400。以下是我的 json 格式。
"requests": [
{
"id": "1",
"method": "GET",
"url": "/parent/123"
},
{
"id": "2",
"method": "GET",
"url": "/parent/123/child/availableChildRecords"
},
{
"headers": {
"Content-Type": "application/json"
}
}
]
} ```