When using webapp from Google App Engine, how can I distinguish POST and GET? Which one gets priority and how can I seprate them? A piece of code below shows the way to obtain a POST/GET field value:
class AddWordHandler(webapp.RequestHandler):
def post(self):
theWord = str( self.request.get('theWord', default_value="no") )
I'd like to ask more: How to handle GET, POST and Cookies smoothly and transparently without writing your own parser?