我是 django/tastypie 的新手。我已经构建了一个 api,并且让请求工作正常,但是每次我运行一个 post/put 请求时,我都会得到一个 401。
这是我的api:
class CategoryResource(ModelResource):
class Meta:
queryset = Category.objects.all()
resources_name = 'category'
Authorization=Authorization()
allowed_methods = ['get', 'post', 'put']
这是我的测试:
def test_update_user_score(self):
response = self.c.put('/api/v1/category/', {'apikey': 1})
print response.status_code
任何想法都非常感谢!