Преглед изворни кода

添加HTTP_AUTHORIZATION形式token

linhaohong пре 10 месеци
родитељ
комит
0ad99dae13
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      Controller/AppSetController.py

+ 2 - 0
Controller/AppSetController.py

@@ -35,6 +35,8 @@ class AppSetView(View):
         if operation == 'query':
             return self.do_query(request_dict, response)
         token = request_dict.get('token', None)
+        if not token:
+            token = TokenObject(request.META.get('HTTP_AUTHORIZATION'))
         tko = TokenObject(token)
         if tko.code != 0:
             return response.json(tko.code)