今天在使用 python 爬虫 练习抓取接口数据的时候,分析js 发现有一个md5加密(如下图),找了许多资料终于搞定了,所以这里记录下怎么在js中使用md5吧
const crypto = require('crypto');
function md5(str) {
const hash = crypto.createHash('md5');
hash.update(str);
return hash.digest('hex');
}
今天在使用 python 爬虫 练习抓取接口数据的时候,分析js 发现有一个md5加密(如下图),找了许多资料终于搞定了,所以这里记录下怎么在js中使用md5吧
const crypto = require('crypto');
function md5(str) {
const hash = crypto.createHash('md5');
hash.update(str);
return hash.digest('hex');
}
nodejs实现消息抓取封装成md5方法
http://halo.zfc.life/archives/069a92bc-35e6-470b-abee-5b4ca65d7491