1 回答
TA贡献1921条经验 获得超9个赞
首先,如果您不确定,请在 Postman 中执行此操作,然后在代码中重新创建相同的内容。这样,您将有一个邮递员来演示您的编码问题。
仅用于.queryParam()参数而不用于正文内容。正文内容应低于.body()
用于.multiPart()将文件作为多部分任务上传。希望这可以帮助。
given().queryParam(
"api_key", "A813302*************",
"method", "my",
"from", "91xxxxxxx")
.body("{\n" +
" \"to\":\"91xxxxxxxx\",\n" +
" \"type\": \"image\", \"image\" : {\"caption\" : \"{{caption}}\"},\n" +
"\"callback\":\"{{callback}}\"\n" +
"}")
.multiPart(new File("C:/Users/sobhit.s/Pictures/SMS-2047.png"))
.when()
.get(ExecutionConfig.BASE_URL)
.prettyPrint();
添加回答
举报