DRF 可浏览 API 在包"django-rest-passwordreset"不起作用



我当前正在使用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

进行问题

相关内容

  • 没有找到相关文章

最新更新