如何在 REST Assured 中传递参数 "context": {"description": "some_value"}

How to pass parameter "context": {"description": "some_value"} in REST Assured

我需要传递参数以在端点上执行 POST

对于key:value对我做如下

参数("key", "value")

下面的参数对象如何实现

"context":{ "description": "some_value" }

提前致谢。

有4种HTTP post方法,由"Content-Type"指定 Header.Normally content-type值为"application/x-www-form-urlencoded",请求体内容如下

name=nameValue&age=10

但是你需要的格式就像JSON.So也许JSON类型POST可以满足你need.Just设置Content-type Header为"application/json" 并且请求正文的内容类似于

{"name":"name","age":10}

和放心使用的方式可以参考这个问题setting content type in rest assured

引用application/x-www-form-urlencoded or multipart/form-data?