소스 검색

将decode(解码)去除

guanhailong 2 년 전
부모
커밋
0398098ecc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Object/UrlTokenObject.py

+ 1 - 1
Object/UrlTokenObject.py

@@ -52,6 +52,6 @@ class UrlTokenObject:
         # print (now_stamp)
         # 过期时间为两天
         data['exp'] = 172800 + now_stamp
-        token = jwt.encode(data, '12345', algorithm='HS256').decode('utf-8')
+        token = jwt.encode(data, '12345', algorithm='HS256')
         self.token = token
         return token