如何在mountebank中创建多个冒名顶替者



我是mountebank的新手,我想知道我是否可以在一个post请求中创建多个冒名顶替者?

我正在使用以下请求

{
"imposters": [
{
"port": 5150,
"protocol": "http",
"recordRequests": true,
"_links": {
"self": {
"href": "http://localhost:2525/imposters/5150"
}
}
},
{
"port": 5151,
"protocol": "http",
"recordRequests": true,
"_links": {
"self": {
"href": "http://localhost:2525/imposters/5151"
}
}
}
]
}

我从mountebank 得到一个错误

{
"errors": [
{
"code": "bad data",
"message": "'protocol' is a required field"
}
]
}

如果我在这里丢东西,有人能帮我吗?

我怀疑问题在于您使用了错误的HTTP方法。要做到这一点,可以使用PUT命令来/temporters,而不是POST。看见https://www.mbtest.org/docs/api/overview#put-冒名顶替者

相关内容

  • 没有找到相关文章

最新更新