arya bartar
arya bartar

Reputation: 31

DRF browsable API is not working in "django-rest-passwordreset" package

I am currently using django-rest-passwordreset package but when I go to reset-password endpoint DRF browsable API is not working (package doc mentioned that browsable API support is available).

urlpatterns = [
    path('password-reset/', include('django_rest_passwordreset.urls', namespace='password_reset')),
]

Is there any settings that I have to change?

Upvotes: 2

Views: 935

Answers (2)

biswa1991
biswa1991

Reputation: 546

REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
    'rest_framework.authentication.BasicAuthentication',
    'rest_framework.authentication.SessionAuthentication',
)

}

surly you add this to you setting,py remove this BasicAuthentication, SessionAuthentication. if still not working post question with the browseble image

Upvotes: 0

biswa1991
biswa1991

Reputation: 546

remove all default authentication and permission class from setting.py and try

Upvotes: 0

Related Questions