在邮递员前脚本中发送帖子请求



我正在尝试使用邮递员在前脚本中发送 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());  });

用于指定headers的键不正确。

它应该是:

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

您需要从代码中删除s

最新更新