在 CherryPy 的帮助下,我将 webhook 设置为我的电报聊天机器人。现在我正在尝试处理通过 webhook 收到的数据。我在cherrypy webhook 类中找到了包含所需json 数据的变量。在我的代码中,变量名是json_string。我需要在我的 python 脚本中到处调用这个变量。我怎么能这样做?谢谢。
class WebhookServer(object):
@cherrypy.expose
def index(self):
if 'content-length' in cherrypy.request.headers and \
'content-type' in cherrypy.request.headers and \
cherrypy.request.headers['content-type'] == 'application/json':
length = int(cherrypy.request.headers['content-length'])
json_string = cherrypy.request.body.read(length).decode("utf-8")
update = telebot.types.Update.de_json(json_string)
bot.process_new_updates([update])
return ''
else:
raise cherrypy.HTTPError(403)