mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Fixed API argument issues
This commit is contained in:
@@ -6,10 +6,13 @@ class APIKeyAuthentication(object):
|
||||
|
||||
def is_authenticated(self, request):
|
||||
|
||||
apikey = request.GET.get('apikey', None)
|
||||
if apikey:
|
||||
params = {}
|
||||
for key,value in request.GET.items():
|
||||
params[key.lower()] = value
|
||||
|
||||
if params['apikey']:
|
||||
try:
|
||||
keyobj = AuthAPIKey.objects.get(key=apikey)
|
||||
keyobj = AuthAPIKey.objects.get(key=params['apikey'])
|
||||
except:
|
||||
keyobj = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user