// 获取全局变量
uid = postman.getGlobalVariable(“uid”)
sid = postman.getGlobalVariable(“sid”)
//设置当前时间戳
postman.setGlobalVariable(“time”,Math.round(new Date().getTime()));
time = postman.getGlobalVariable(‘time’)
//设置KEY_WORD为全局变量
postman.setGlobalVariable(“Key”,“******”)
KEY_WORD = postman.getGlobalVariable(“Key”);文章来源:https://www.toymoban.com/news/detail-631135.html
//字符串进行md5加密
var str = “XXX”+“xxx”+time+“KEY_WORD”;
var strmd5= CryptoJS.MD5(str).toString().toUpperCase;
postman.setGlobalVariable(“sign”,strmd5)
附解密网站:md5文章来源地址https://www.toymoban.com/news/detail-631135.html
到了这里,关于postman 携带时间戳及md5加密预处理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!