我使用 ssl_options 创建了简单的龙卷风 http 服务器,并为 Telegram 机器人设置了网络挂钩,但服务器没有收到“发布”请求。可能是什么问题?
import tornado.httpserver
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def post(self):
print('Post request')
def get(self):
print('Get request')
self.write('<h1>Hello, World</h1>')
application = tornado.web.Application([
(r'/', MainHandler)
])
if __name__ == '__main__':
http_server = tornado.httpserver.HTTPServer(application, ssl_options={
'certfile': 'server.crt',
'keyfile': 'server.key'
})
http_server.listen(443)
tornado.ioloop.IOLoop.current().start()