Last active
September 15, 2020 01:11
-
-
Save msukmanowsky/586f62afb506f14f486c9601bca54445 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rest_framework.authentication import BasicAuthentication | |
class CustomBasicAuthentication(BasicAuthentication): | |
def authenticate_header(self, request): | |
# Important see https://stackoverflow.com/questions/9859627/how-to-prevent-browser-to-invoke-basic-auth-popup-and-handle-401-error-using-jqu?lq=1 | |
return None |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment