In Django-Piston, is there a good way to do error handling? (Like returning a 400 status code when the caller omits a required GET parameter, or when the parameters are invalid.)
|
feedback
|
|
Django-piston respects HTTP status codes and handles common erros by default (auth, etc), but you can also throw new exceptions or status using rc from piston.utils. For example:
Check out all utilities at https://bitbucket.org/jespern/django-piston/wiki/Documentation#!helpers-utils-decorators | |||
|
feedback
|