进行问题
我当前正在使用django-rest-passwordreset软件包,但是当我转到Reset-password endpoint drf browsable API时(软件包DOC提到的是可用浏览API支持)。
urlpatterns = [
path('password-reset/', include('django_rest_passwordreset.urls', namespace='password_reset')),
]
我有什么设置需要更改?
从设置中删除所有默认身份验证和权限类,然后尝试
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework.authentication.BasicAuthentication',
'rest_framework.authentication.SessionAuthentication',
)
}
您将其添加到您的设置中,py删除此基本授权,sessionauthentication。如果仍然无法使用Browseble Image