Skip to content Skip to sidebar Skip to footer

Http 303 (seeother): Get Works, Post Fails

I am trying to perform a simple action: POST to a URL Return HTTP 303 (SeeOther) GET from new URL From what I can tell, this is a pretty standard practice: http://en.wikipedia.or

Solution 1:

It's entirely possible that this isn't your issue, but since you don't have your code posted I'll take a shot (just in case).

Since you're using web.py, do you have the POST method defined on your object?

i.e.

urls = (
    '/page', 'page'
)

classpage:defPOST(self):
        # Do somethingdefGET(self):
        # Do something else

Post a Comment for "Http 303 (seeother): Get Works, Post Fails"