I'm unable to access my API root in production for some reason. I've even removed all permissions and added the below default permission classes in my settings.py
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': (
'rest_framework.permissions.AllowAny',
) }
Event after removing permissions I get a HTTP 403 response
{ "detail": "Invalid username/password." }
It works fine on my local environment. Am I missing something?