Skip to content

Instantly share code, notes, and snippets.

@msukmanowsky
Last active September 15, 2020 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msukmanowsky/586f62afb506f14f486c9601bca54445 to your computer and use it in GitHub Desktop.
Save msukmanowsky/586f62afb506f14f486c9601bca54445 to your computer and use it in GitHub Desktop.
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