I'm building a Django-Tastypie server. After I create a resource successfully, the server will response me "201 created", but the Content-Type is text/html. I want the resource always return JSON response, how to do it?
Here's my resource code
class UserResource(ModelResource):
class Meta:
resource_name = "user"
queryset = User.objects.all()
authentication = Authentication()
authorization = Authorization()
allowed_methods=["post"]
fields= ["username","email","id"]
def determine_format(self, request):
return "application/json"