django/tastypieは初めてです。私はAPIを構築し、getリクエストが正常に機能していますが、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
どんなアイデアでも大歓迎です!