模拟 n 个请求
开发代理支持通过nth
请求对象的 属性模拟 n 次。
提示
通过在命令提示符 devproxy preset get microsoft-graph-connector
中运行 来下载此预设。
以下面的模拟文件为例,我们可以看到它包含两个同一请求 URL 的模拟。 当代理第二次截获具有指定 URL 的请求时,使用使用 nth
属性的第一个响应。 对于所有其他请求,代理将返回第二个响应。
提示
应首先使用 nth
属性进行模拟。 代理使用基于第一个匹配项的模拟。
{
"$schema": "https://raw.githubusercontent.com/microsoft/dev-proxy/main/schemas/v0.14.1/mockresponseplugin.schema.json",
"mocks": [
{
"request": {
"url": "https://graph.microsoft.com/v1.0/external/connections/*/operations/*",
"method": "GET",
"nth": 2
},
"response": {
"statusCode": 200,
"body": {
"id": "1.neu.0278337E599FC8DBF5607ED12CF463E4.6410CCF8F6DB8758539FB58EB56BF8DC",
"status": "completed",
"error": null
}
}
},
{
"request": {
"url": "https://graph.microsoft.com/v1.0/external/connections/*/operations/*",
"method": "GET"
},
"response": {
"statusCode": 200,
"body": {
"id": "1.neu.0278337E599FC8DBF5607ED12CF463E4.6410CCF8F6DB8758539FB58EB56BF8DC",
"status": "inprogress",
"error": null
}
}
}
]
}
后续步骤
详细了解 MockResponsePlugin。
示例
另请参阅相关的开发代理示例: