今天在使用 python 爬虫 练习抓取接口数据的时候,分析js 发现有一个md5加密(如下图),找了许多资料终于搞定了,所以这里记录下怎么在js中使用md5吧

const crypto = require('crypto');

function md5(str) {

  const hash = crypto.createHash('md5');

  hash.update(str);

  return hash.digest('hex');

}