postman

postman使用当前时间戳方式,headers里面要放

https://www.cnblogs.com/kala00k/p/11517941.html

加密 https: //blog.csdn.net/wxy_summer/article/details/82415753

postman.setGlobalVariable("time",Math.round(new Date().getTime()));
time = postman.getGlobalVariable('time')


//字符串进行md5加密
var str = "qing_QiNG_jIA_JiAo!#%&@$^*-" + time;
var strmd5= CryptoJS.MD5(str).toString();
postman.setGlobalVariable("Authkey",strmd5)

  

原文地址:https://www.cnblogs.com/woainixxx/p/12198276.html