思路:
1、登录成功后将 得到的token设置为集合变量
2、在需要携带Authorization的请求头上使用该集合变量
文章来源:https://www.toymoban.com/news/detail-699199.html
关键代码文章来源地址https://www.toymoban.com/news/detail-699199.html
const responseData = pm.response.json();
if(responseData.code == 1) {
// 获取token
const {data:{token}} = responseData
// 设置为集合变量
pm.collectionVariables.set('admin_token',token);
//console.log(pm.collectionVariables.get('admin_token'));
}else{
console.log('请求错误');
}
到了这里,关于postman token 请求头添加的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!