发送邮递员前言的邮寄请求

时间:2020-06-09 07:17:21

标签: postman postman-pre-request-script

我正在尝试使用邮递员在预脚本中发送POST请求,但出现错误“评估预请求脚本时出错:错误:意外的标记'<'为1:1 ^”。不知道怎么了。有人可以帮我吗?

pm.sendRequest({
url: 'http://localhost:8001/routes/d6b7a95a-fd91-4f8a-b8f6-10835f30170a',
method: 'PATCH',
headers: {"Content-Type": "application/json"},
body: { 
    mode: 'raw',
    raw:JSON.stringify({
        "protocols":["http","https"],
        "paths":["/target-paymentoriginal"],
        "methods":[]})}  }, 

function (err, response) {  console.log("Updated original route to target-payment"+response.json());  });

1 个答案:

答案 0 :(得分:1)

指定headers的键不正确。

应该是:

header: {"Content-Type": "application/json"}-

您需要从代码中删除s