参考:https://www.cnblogs.com/yyds/p/7072492.html
hmac.new(bytes(self.token,'utf-8'),msg=bytes(content,'utf-8'),digestmod=sha256).hexdigest()
key为密钥,msg为初始数据,digestmod为所使用的哈希算法,默认为hashlib.md5
hexdigest():十六进制格式的字符串
参考:https://www.cnblogs.com/yyds/p/7072492.html
hmac.new(bytes(self.token,'utf-8'),msg=bytes(content,'utf-8'),digestmod=sha256).hexdigest()
key为密钥,msg为初始数据,digestmod为所使用的哈希算法,默认为hashlib.md5
hexdigest():十六进制格式的字符串