postman使用教程19-collection添加Pre-request Scripts 解决登录依赖token
Posted 上海-悠悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman使用教程19-collection添加Pre-request Scripts 解决登录依赖token相关的知识,希望对你有一定的参考价值。
前言
postman可以在接口请求Pre-request 添加请求前的操作,很多接口都是依赖于先登录的。于是可以在Pre-request 发送一个登录请求获取token。
当接口较多的时候,每个接口前面加一次会很麻烦,这种公共操作可以写到collection 集合中添加 Pre-request Scripts
collection添加Pre-request Scripts
collection - edit 编辑界面点开 Pre-request Scripts
添加代码
const regRequest = {
url: 'http://localhost:8000/api/v1/login',
method: 'POST',
header: 'Content-Type: application/json',
body: {
mode: 'raw',
raw: JSON.stringify({ username: 'test', password: '123456' })
}
};
// 发送登录请求,获取token
pm.sendRequest(regRequest, function (err, res) {
console.log(res.json()['token']);
pm.variables.set('token', res.json()['token'])
});
// 更新到请求头部
pm.request.headers.add({
key:"Authorization",
value:"Token {{token}}"
});
依赖登录的接口
依赖登录的接口,请求头部不需要再添加Authorization:Token {{token}}
查看Console 可以看到会先执行登录,自动更新请求头部token值
以上是关于postman使用教程19-collection添加Pre-request Scripts 解决登录依赖token的主要内容,如果未能解决你的问题,请参考以下文章