django-rest-framework中的get_authorization_header在哪里

时间:2013-12-30 14:03:04

标签: django django-rest-framework

我正在尝试使用django-rest-framework具有的get_authorization_header函数,但我有这个错误:

Exception Type: NameError
Exception Value:    
global name 'get_authorization_header' is not defined

所以我开始找到放置此功能的位置,然后我找到它here然后导入模块:

from rest_framework import authentication

错误仍然阻止我继续工作。可能是我的问题?

2 个答案:

答案 0 :(得分:1)

您想要的方法是here

此致

答案 1 :(得分:1)

我认为你需要的是:

from rest_framework.authentication import get_authorization_header