For some reason, I am not able to use POST methods in tornado.
Even the hello_world
example does not work when I change GET to POST.
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def post(self):
self.write("Hello, world")
application = tornado.web.Application([
(r"/", MainHandler),
])
if __name__ == "__main__":
application.listen(8888)
tornado.ioloop.IOLoop.instance().start()
It throws "405 method not allowed". Any suggestions?