我是 mountebank 的新手,我想看看我是否可以在一个帖子请求中创建多个冒名顶替者?
我正在使用以下请求
{
"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"
}
]
}
如果我在这里遗漏了一些东西,任何人都可以帮助我吗?