Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3976290
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T04:47:13+00:00 2026-05-20T04:47:13+00:00

In Django-Piston, is there a good way to do error handling? (Like returning a

  • 0

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.)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T04:47:14+00:00Added an answer on May 20, 2026 at 4:47 am

    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:

    from django.contrib.auth.models import User
    from piston.handler import AnonymousBaseHandler
    from piston.utils import rc
    
    class AnonymousUserHandler(AnonymousBaseHandler):
        allowed_methods = ('GET', )
        fields = ('id', 'username',)
    
        def read(self, request):
            try:
                user = User.objects.get(username=request.GET.get('username', None))
                return user
            except Exception:
                resp = rc.NOT_FOUND
                resp.write(' User not found')
                return resp
    

    Check out all utilities at https://django-piston-sheepdog.readthedocs.io/en/latest/helpers.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So while working through an implementation of OAuth using Django-Piston I encountered the error
In my django-piston handler functions, it looks like I can basically do two things.
I've noticed that there are about 30 forks of Django Piston on GitHub: https://github.com/search?q=django-piston&type=Everything&repo=&langOverride=&start_value=1
I had django-piston working a week ago but recently I'm unable to call any
I've built a Django web application and some Django-Piston services. Using a web interface
I have a simple Django-Piston Handler that creates a new instance of a model
I'm using django-piston for my REST json api, and I have it all set
I'm working with django-piston to attempt to create an API that supports oAuth. I
I have a library (django-piston) which is expecting some parameters of the class as
Django returns an HTML error template by default when an unhandled exception happens in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.