我使用postman 6.0发送http请求。要发送请求,我使用预请求脚本来获取令牌并将其放入环境中,以便将其用于以下请求。 下面的脚本不起作用,因为未发送正文。下面有什么东西吗?
const getTaxAccessToken={
url: 'http://dev.xxx.com:4001/api/v1/portal/account/tax-login',
method: "post",
body: {
'loginIdentity': 'admic',
'password': 'abc123'
},
header: {
'Content-Type': 'application/json'
}
};
pm.sendRequest(getTaxAccessToken, function (err, response) {
console.log("get accesstoken");
console.log(response.access_Token);
pm.environment.set("taxAccessToken", response.access_Token);
});
答案 0 :(得分:5)
试试这个。
onblur
答案 1 :(得分:4)
如果请求需要是 application/x-www-form-urlencoded
类型:
const options = {
url: 'http://some/url',
method: 'POST',
header: {
'Accept': '*/*',
'Content-Type': 'application/x-www-form-urlencoded',
},
body: {
mode: 'urlencoded',
urlencoded : [
{ key: 'loginIdentity', value: 'admic'},
{ key: 'password', value: 'abc123'},
]
}
};
pm.sendRequest(options, function (err, res) {
// ...
});