my resource code is
class MessageResource(ModelResource):
class Meta:
queryset = Message.objects.all()
resource_name = "message"
always_return_data = True
authentication = ApiKeyAuthentication()
authorization = Authorization()
def determine_format(self, request):
return "application/json"
If I get the message resource without any authentication info, the response is
401 UNAUTHORIZED
"Content-Type" = "text/html; charset=utf-8";
Date = "Mon, 19 Nov 2012 15:36:28 GMT";
Server = "WSGIServer/0.1 Python/2.7.2";
instead of html, I want to get the JSON response. Actually, I want to know how to specify tastypie only send back JSON response in any cases?
I want to get the JSON response like
{ "code": "401", "message": "Unauthorized" }
Is there any way to implement it?