我已经使用 django-tastypie 成功地由特定用户生成了 api 密钥。请看下面的代码,
class UserResource(ModelResource):
class Meta:
queryset = User.objects.all()
authorization = ApiKeyAuthentication()
resource_name = 'user'
我尝试使用 . 它访问 json 数据http://10.90.90.95:3000/api/v1/user/?username=ravi&api_key=66184ad5abfbda8fcd1688c9e8a3780842262658gdf&format=json
。它提供了以下回溯。
line 590, in authorized_read_list auth_result = self._meta.authorization.read_list(object_list, bundle) AttributeError: 'ApiKeyAuthentication' object has no attribute 'read_list'
.
请解决我的问题。谢谢..