有没有办法将响应对象值从第一个请求传递到第二个请求作为图形批处理请求中的输入参数(第二个请求取决于第一个请求 - graph/json-batching)
在以下请求中,客户端指定应首先运行请求 1,然后运行请求 2。第二个请求需要来自第一个请求的响应的 id 作为 URL 变量。实现它的方法是什么?
JSON
{
"requests": [
{
"id": "1",
"method": "GET",
"url": "/users/<upn>?$select=id"
},
{
"id": "2",
"dependsOn": [ "1" ],
"method": "GET",
"URL": "users/<id from the 1st request>/presence"
}
]
}