gpt4 book ai didi

post - Wiremock 匹配请求 POST by params

转载 作者:行者123 更新时间:2023-11-30 23:48:09 26 4
gpt4 key购买 nike

我有一个简单的 POST 请求使用 application/x-www-form-urlencoded 发送参数编码。

看着wiremock docs我找不到通过 params 值匹配请求的方法,例如 querystring匹配我的意思。

此外似乎也不可能contains对于 body ,也不以清晰的方式匹配整个 body (就像 base64 一样)。

有没有办法匹配这种请求?

最佳答案

我发现的另一个选择是使用 contains stub Content-Type: application/x-www-form-urlencoded

{
"request": {
"method": "POST",
"url": "/oauth/token",
"basicAuthCredentials": {
...
},
"bodyPatterns": [
{
"contains": "username=someuser"
}
]
},
"response": {
....
}
}

关于post - Wiremock 匹配请求 POST by params,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48627656/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com