我需要将下面的curl命令转换为可放心的POST请求。 有人可以帮我吗
curl -ks --http1.0 -X POST "$server?format=pdf&tid=TD1" --cookie "INTERSET_SESSION=$access_token" -H 'content-type: multipart/form-data' -F 'template=@../templates/dashboard.hbs' -o output.pdf
参数template=@../templates/dashboard.hbs
保存一个文件。
答案 0 :(得分:0)
检查以下内容是否有帮助
{
RequestSpecification req = RestAssured.given();
req.header("Content-Type", "multipart/form-data");
req.header("Cookie", "INTERSET_SESSION=ABCD");
req.multiPart("file2", new File("template=@../templates/dashboard.hbs"));
Response resp = req.post("$server?format=pdf&tid=TD1");
}