mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-31 18:40:07 +03:00
Need to pass root request object to authenticate, not DRF's Request class
This commit is contained in:
parent
627eeb8202
commit
3e2bb93402
|
@ -12,7 +12,7 @@ from django.utils.six import text_type
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
|
||||||
from rest_framework import HTTP_HEADER_ENCODING, exceptions
|
from rest_framework import HTTP_HEADER_ENCODING, exceptions
|
||||||
|
from rest_framework.request import Request as DRFRequest
|
||||||
|
|
||||||
def get_authorization_header(request):
|
def get_authorization_header(request):
|
||||||
"""
|
"""
|
||||||
|
@ -94,6 +94,8 @@ class BasicAuthentication(BaseAuthentication):
|
||||||
get_user_model().USERNAME_FIELD: userid,
|
get_user_model().USERNAME_FIELD: userid,
|
||||||
'password': password
|
'password': password
|
||||||
}
|
}
|
||||||
|
if request and isinstance(request, DRFRequest):
|
||||||
|
request = request._request
|
||||||
user = authenticate(request=request, **credentials)
|
user = authenticate(request=request, **credentials)
|
||||||
|
|
||||||
if user is None:
|
if user is None:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user