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()
だから wget http://localhost/?#access_token=DWE232
私は何も得ませんでした。
wget http://localhost/?access_tokent=DWE232 の場合、値を取得できます
問題を解決するには?