Fittizia nth richiesta
Dev Proxy supporta la simulazione di n-th tramite la nth
proprietà nell'oggetto richiesta .
Suggerimento
Scaricare questo set di impostazioni eseguendo nel prompt dei comandi devproxy preset get microsoft-graph-connector
.
Usando il file fittizio seguente come esempio, è possibile notare che contiene due simulazioni per lo stesso URL della richiesta. Proxy usa la prima risposta che usa la nth
proprietà , quando intercetta una richiesta con l'URL specificato per la seconda volta. Per tutte le altre richieste, il proxy restituisce la seconda risposta.
Suggerimento
I mock con la nth
proprietà devono essere prima. Il proxy usa simulazioni in base alla prima corrispondenza.
{
"$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
}
}
}
]
}
Altre informazioni su MockResponsePlugin.
Vedere anche gli esempi correlati di Dev Proxy:
Feedback su Dev Proxy
Dev Proxy è un progetto di open source. Selezionare un collegamento per fornire feedback: