我当前正在使用django-rest-passwordreset软件包,但是当我进入重置密码端点DRF时,可浏览API无法正常工作(软件包文档中提到可浏览API支持可用)。
urlpatterns = [
path('password-reset/', include('django_rest_passwordreset.urls', namespace='password_reset')),
]
我需要更改任何设置吗?
答案 0 :(得分:0)
从setting.py中删除所有默认的身份验证和权限类,然后尝试
答案 1 :(得分:0)
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.BasicAuthentication',
'rest_framework.authentication.SessionAuthentication',
)
}
确保将其添加到设置中,然后删除此BasicAuthentication,SessionAuthentication。如果仍然无法解决问题,请问可浏览图像