From a07976d6ed53a79608272c78e6c2c0e4d52f4e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A4=BE=E4=BC=9A=E6=98=93=E5=A7=90QwQ?= <45892418+SocialSisterYi@users.noreply.github.com> Date: Mon, 2 May 2022 01:16:21 +0800 Subject: [PATCH] fix typo --- other/API_sign.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other/API_sign.md b/other/API_sign.md index e4f71ab..e4f456c 100644 --- a/other/API_sign.md +++ b/other/API_sign.md @@ -36,7 +36,7 @@ def appsign(params, appkey, appsec): query = urllib.parse.urlencode(params) # 序列化参数 sign = hashlib.md5((query+appsec).encode()).hexdigest() # 计算 api 签名 params.update({'sign':sign}) - return params + return params appkey = '1d8b6e7d45233436' appsec = '560c52ccd288fed045859ed18bffd973'