该文档说:“REST框架提供了一个内置视图来提供这种行为。要使用它,请将obtain_auth_token视图添加到您的URLconf ......”
我遵循了文档,但我无法弄清楚如何显示ObtainAuthToken视图,更一般地说如何正确配置TokenAuthentication ......
由于
答案 0 :(得分:0)
url(r'^api-token-auth/', 'rest_framework.authtoken.views.obtain_auth_token')
它接受Django Rest Framework提供的视图,并在“api-token-auth”中提供。这是你的“urls.py”文件。