Here is my code:
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write(self.response.arguments)
def main():
settings = {"template_path": "html","static_path": "static","debug":True}
tornado.options.parse_command_line()
application = tornado.web.Application([ (r"/", MainHandler)],**settings)
http_server = tornado.httpserver.HTTPServer(application)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
if __name__ == "__main__":
main()
so wget http://localhost/?#access_token=DWE232
I got nothing.
if wget http://localhost/?access_tokent=DWE232 and I can get the value
How to solve the problem?