我按照官方 django-oauth 工具包文档(https://django-oauth-toolkit.readthedocs.io/en/latest/tutorial/tutorial_02.html)的说明并手动包含了所有 oauth-toolkit url,以防止用户创建应用程序。
在我的根 urls.py 中,我将以下行添加到 url 模式中,如教程中所示:
url(r'^o/', include(oauth2_endpoint_views, namespace="oauth2_provider")),
我使用了include
fromdjango.conf.url
包。
现在当我启动服务器时,它说
“不支持在 include() 中指定命名空间而不提供 app_name。在包含的模块中设置 app_name 属性,或者传递包含模式列表和 app_name 的 2 元组。”
当我name
像这样向 url-command 添加属性时:
url(r'^o/', include(oauth2_endpoint_views, namespace="oauth2_provider"), name="oauth2_provider"),
服务器启动,但是当我尝试访问“localhost/o/applications”时,它显示“NoReverseMatch:'oauth2_provider'不是注册的命名空间”
我究竟做错了什么?