如何分析大摇大摆的请求(带有查询)并发送不同的响应主体?

How to analyze requests (with queries) on swagger and send different response body?

是否可以在 swagger hub api 3.0 上分析请求(基于查询)?

比如我需要重现下一个东西

对于请求getUser?id=1 swager swagger 必须向客户端发送响应

{
  "user_id": "1"
  "user_name": "Alex",
}

对于请求getUser?id=2 swager swagger 必须向客户端发送响应

{
  "user_id": "2"
  "user_name": "Bob",
}

如果可以的话,你能帮我解决一下吗?

我猜你的问题是关于 SwaggerHub mock server 的。根据文档,这是不支持的:

Note that the mock does not support business logic, that is, it cannot send specific responses based on the input.