diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 14a4e65..a0d3c3b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.11"] steps: - uses: actions/checkout@v3 @@ -27,14 +27,19 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + python setup.py install python -m pip install flake8 pytest + python -m pip install pytest-cov if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + flake8 --count --max-complexity="14" --doctests --show-source --statistics --max-line-length="125" - name: Test with pytest run: | - pytest + pytest --cov + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + files: .coverage diff --git a/.gitignore b/.gitignore index 80e8888..b58f8e1 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,10 @@ # Compiled, optimized or cached files. .cache/ __pycache__/ +.pytest_cache/ *.py[cod] *$py.class +build/ # Bot example log. /example/log/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..386e39a --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,22 @@ +# Contribute +## Pull request +Если вы решили впервые стать контрибьютером и помочь развитию open-source проекта, этот пункт для вас. +1) Делается fork основного репозитория +2) git clone https://github.com/ваш-логин/bot-golang.git +3) Локальное изменение +4) Сделайте ребейз на remote master ветку +5) git push origin <ваш-логин> +6) В удаленном репозитории нажать _compare&pull request_ + +Также рекомендуем ознакомиться с подробной инструкцией для контрибьютеров - README.md + +## Tests +1) Если добавляется новая функциональность, то покрывайте ее тестами +2) Следите за тем, чтобы тесты успешно выполнялись в PR перед мержем. + +## Merge +Ветка будет смержена в мастер, когда: +1) Все пайплайны пройдут успешно +2) Новая функциональность будет покрыта тестами + +После выполнения всех пунктов один из сотрудников проверит в ближайшее время PR и смержит его. diff --git a/README.md b/README.md index c6ff30e..76cd617 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,21 @@ - + -# 🐍 bot-python +# VK Teams Bot API for Python +[![Python package](https://github.com/mail-ru-im/bot-python/actions/workflows/python-package.yml/badge.svg)](https://github.com/mail-ru-im/bot-python/actions/workflows/python-package.yml) +[![codecov](https://codecov.io/github/mail-ru-im/bot-python/graph/badge.svg?token=ObUFRWSyGv)](https://codecov.io/github/mail-ru-im/bot-python) +[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat)](https://pkg.go.dev/github.com/mail-ru-im/bot-golang) +![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg) -Pure Python interface for Bot API. +### [ VK Teams API Specification](https://teams.vk.com/botapi/) -# Table of contents -- [Introduction](#introduction) -- [Getting started](#getting-started) -- [Installing](#installing) -- [API description](#api-description) +## Getting started -# Introduction - -This library provides complete Bot API 1.0 interface and compatible with Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10. - -# Getting started - -* Create your own bot by sending the /newbot command to Metabot and follow the instructions. +* Create your own bot by sending the _/newbot_ command to _Metabot_ and follow the instructions. >Note: a bot can only reply after the user has added it to his contact list, or if the user was the first to start a dialogue. -* You can configure the domain that hosts your ICQ server. When instantiating the Bot class, add the address of your domain. - > Example: Bot(token=TOKEN, name=NAME, version=VERSION, api_url_base="https://api.icq.net/bot/v1"), by default we use the domain: https://api.icq.net/bot/v1 -* If you are Myteam client, you can add flag "is_myteam=True", when instantiating the Bot class. This will let you use additional chat methods. - > Example: Bot(token=TOKEN, name=NAME, is_myteam=True), by default it is False. - +* You can configure the domain that hosts your VK Teams server. When instantiating the Bot class, add the address of your domain. +* An example of how to use the framework can be seen in _example/test_bot.py_ -> An example of how to use the framework can be seen in example/test_bot.py - -# Installing +## Installing Install using pip: ```bash pip install --upgrade mailru-im-bot @@ -37,10 +26,4 @@ Install from sources: git clone https://github.com/mail-ru-im/bot-python.git cd bot-python python setup.py install -``` - -# API description - +``` \ No newline at end of file diff --git a/bot/bot.py b/bot/bot.py index f76610e..59a7887 100644 --- a/bot/bot.py +++ b/bot/bot.py @@ -17,7 +17,14 @@ from . import __version__ as version from .dispatcher import Dispatcher from .event import Event -from .handler import * +from .handler import EventType, DefaultHandler, \ + NewChatMembersHandler, LeftChatMembersHandler, \ + PinnedMessageHandler, MessageHandler, \ + EditedMessageHandler, DeletedMessageHandler, \ + CommandHandler, HelpCommandHandler, \ + StartCommandHandler, UnknownCommandHandler, \ + BotButtonCommandHandler, UnPinnedMessageHandler, \ + Filter, StopDispatching from .util import signal_name_by_code from .myteam import add_chat_members, create_chat from .types import InlineKeyboardMarkup, Format @@ -32,6 +39,7 @@ def keyboard_to_json(keyboard_markup): else: return keyboard_markup + def format_to_json(format_): if isinstance(format_, Format): return format_.to_json() @@ -40,6 +48,7 @@ def format_to_json(format_): else: return format_ + class Bot(object): def __init__(self, token: str, api_url_base: str = None, name: str = None, version: str = None, timeout_s: int = 20, poll_time_s: int = 60, is_myteam: bool = False): @@ -107,8 +116,10 @@ def _start_polling(self): if "description" in response.json() and response.json()["description"] == 'Invalid token': raise InvalidToken(response.json()) - for event in response.json()["events"]: - self.dispatcher.dispatch(Event(type_=EventType(event["type"]), data=event["payload"])) + if "events" in response.json(): + for event in response.json()["events"]: + self.dispatcher.dispatch(Event(type_=EventType(event["type"]), data=event["payload"])) + except InvalidToken as e: self.log.exception("InvalidToken: {e}".format(e=e)) sleep(5) diff --git a/bot/constant.py b/bot/constant.py index be422f1..9b55a93 100644 --- a/bot/constant.py +++ b/bot/constant.py @@ -60,11 +60,13 @@ class ChatType(Enum): GROUP = "group" CHANNEL = "channel" + @unique class ParseMode(Enum): MARKDOWNV2 = "MarkdownV2" HTML = "HTML" + @unique class StyleType(Enum): BOLD = "bold" diff --git a/bot/event.py b/bot/event.py index c2c8e69..8b195c1 100644 --- a/bot/event.py +++ b/bot/event.py @@ -36,6 +36,6 @@ def __init__(self, type_, data): self.chat_type = data['message']['chat']['type'] self.message_author = data['queryId'].split(':')[1] self.queryId = data['queryId'] - + def __repr__(self): return "Event(type='{self.type}', data='{self.data}')".format(self=self) diff --git a/bot/filter.py b/bot/filter.py index f06c5b0..d3159a2 100644 --- a/bot/filter.py +++ b/bot/filter.py @@ -220,4 +220,3 @@ class Filter(object): sender = SenderFilter callback_data = CallbackDataFilter callback_data_regexp = CallbackDataRegexpFilter - diff --git a/bot/handler.py b/bot/handler.py index b56442d..409ee99 100644 --- a/bot/handler.py +++ b/bot/handler.py @@ -165,4 +165,4 @@ def check(self, event, dispatcher): return ( super(BotButtonCommandHandler, self).check(event=event, dispatcher=dispatcher) and event.type is EventType.CALLBACK_QUERY - ) \ No newline at end of file + ) diff --git a/bot/myteam.py b/bot/myteam.py index 81b42b9..307a829 100644 --- a/bot/myteam.py +++ b/bot/myteam.py @@ -1,5 +1,5 @@ import json -from requests import Request + def add_chat_members(self, chat_id, members): return self.http_session.get( @@ -11,6 +11,7 @@ def add_chat_members(self, chat_id, members): } ) + def create_chat(self, name, about="", rules="", members=[], public=False, join_moderation=False, default_role="member"): return self.http_session.get( url="{}/chats/createChat".format(self.api_base_url), diff --git a/bot/types.py b/bot/types.py index 49f609a..56dba8f 100644 --- a/bot/types.py +++ b/bot/types.py @@ -2,6 +2,7 @@ from .constant import StyleType + class JsonSerializable(object): def to_json(self): @@ -73,15 +74,16 @@ def to_json(self): def to_dic(self): return self.keyboard + class Style(Dictionaryable, JsonSerializable): def __init__(self): self.ranges = [] def add(self, offset, length, args=None): - range_ = { "offset": offset, "length": length } + range_ = {"offset": offset, "length": length} if args is not None: - self.ranges.append({ **range_ , **args}) + self.ranges.append({**range_, **args}) else: self.ranges.append(range_) @@ -91,6 +93,7 @@ def to_dic(self): def to_json(self): return json.dumps(self.ranges) + class Format(Dictionaryable, JsonSerializable): def __init__(self): diff --git a/example/decorators_bot.py b/example/decorators_bot.py deleted file mode 100644 index b393f6d..0000000 --- a/example/decorators_bot.py +++ /dev/null @@ -1,20 +0,0 @@ -from bot.bot import Bot - - -TOKEN = "" # your token here - -test_bot = Bot(token=TOKEN) - - -@test_bot.message_handler() -def message_cb(bot, event): - bot.send_text(chat_id=event.from_chat, text=event.text) - - -@test_bot.button_handler() -def message_cb(bot, event): - bot.send_text(event.data['message']['chat']['chatId'], text='Test') - - -test_bot.start_polling() -test_bot.idle() diff --git a/example/echo_bot.py b/example/echo_bot.py index 7fc12f9..4b7e8f2 100644 --- a/example/echo_bot.py +++ b/example/echo_bot.py @@ -1,7 +1,7 @@ from bot.bot import Bot from bot.handler import MessageHandler -TOKEN = "" #your token here +TOKEN = "" # your token here bot = Bot(token=TOKEN) diff --git a/example/format_bot.py b/example/format_bot.py index e837693..bfef833 100644 --- a/example/format_bot.py +++ b/example/format_bot.py @@ -1,16 +1,16 @@ from bot.bot import Bot from bot.handler import MessageHandler -from bot.constant import ParseMode from bot.types import Format import logging.config logging.config.fileConfig("logging.ini") -TOKEN = "" #your token here +TOKEN = "" # your token here bot = Bot(token=TOKEN, api_url_base="") + def message_cb(bot, event): bot.send_text(chat_id=event.from_chat, text="*_Hello_*", parse_mode="MarkdownV2") bot.send_text(chat_id=event.from_chat, text="| World! |", parse_mode="HTML") diff --git a/example/test_bot.py b/example/hidden_test_bot.py similarity index 99% rename from example/test_bot.py rename to example/hidden_test_bot.py index bf0512a..4836f9c 100644 --- a/example/test_bot.py +++ b/example/hidden_test_bot.py @@ -10,6 +10,7 @@ CommandHandler, NewChatMembersHandler, LeftChatMembersHandler, PinnedMessageHandler, UnPinnedMessageHandler, \ EditedMessageHandler, DeletedMessageHandler, StartCommandHandler, BotButtonCommandHandler + if sys.version_info[0] == 3: from gtts import gTTS @@ -23,7 +24,7 @@ OWNER = "XXXXXXXXX" TEST_CHAT = "XXXXX" TEST_USER = "XXXXX" -API_URL = "https://api.icq.net/bot/v1" +API_URL = "http://localhost:8080" def start_cb(bot, event): @@ -259,7 +260,7 @@ def main(): bot.dispatcher.add_handler(MessageHandler(filters=Filter.text, callback=message_cb)) # Handler with regexp filter - bot.dispatcher.add_handler(MessageHandler(filters=Filter.regexp("^\d*$"), callback=regexp_only_dig_cb)) + bot.dispatcher.add_handler(MessageHandler(filters=Filter.regexp("^\\d*$"), callback=regexp_only_dig_cb)) # Handler for no media file. For example, text file bot.dispatcher.add_handler(MessageHandler(filters=Filter.data, callback=file_cb)) diff --git a/example/myteam_bot.py b/example/myteam_bot.py index 1e166a7..5f4a47d 100644 --- a/example/myteam_bot.py +++ b/example/myteam_bot.py @@ -5,7 +5,7 @@ logging.config.fileConfig("logging.ini") -TOKEN = "" #your token here +TOKEN = "" # your token here bot = Bot(token=TOKEN, api_url_base="", is_myteam=True) @@ -17,7 +17,7 @@ def message_cb(bot, event): bot.add_chat_members(chat_id=resp.json()['sn'], members=["user1@myteam.ru", "user2@myteam.ru", "user3@myteam.ru"]) bot.send_text(chat_id=resp.json()['sn'], text="Hello! And Goodbye!") bot.delete_chat_members(chat_id=resp.json()['sn'], members=["user2@myteam.ru", "user3@myteam.ru"]) - bot.send_text(chat_id=event.from_chat, text="Bye!") + bot.send_text(chat_id=event.from_chat, text="Bye!") bot.dispatcher.add_handler(MessageHandler(callback=message_cb)) diff --git a/example/scheduled_bot.py b/example/scheduled_bot.py index 169e493..e3e0fbe 100644 --- a/example/scheduled_bot.py +++ b/example/scheduled_bot.py @@ -2,7 +2,7 @@ import time from bot.bot import Bot -TOKEN = "" #your toke here +TOKEN = "" # your toke here bot = Bot(token=TOKEN) chats_to_send_notifications = [ diff --git a/example/server.py b/example/server.py new file mode 100644 index 0000000..bfc269b --- /dev/null +++ b/example/server.py @@ -0,0 +1,138 @@ +# Python 3 server example +from http.server import BaseHTTPRequestHandler, HTTPServer +import urllib.parse as urlparse + + +hostName = "localhost" +serverPort = 8080 + + +class MyServer(BaseHTTPRequestHandler): + + def do_GET(self): + self._do() + + def do_POST(self): + self._do() + + def do_DELETE(self): + self._do() + + def do_HEAD(self): + self._do() + + def _do(self): + o = urlparse.urlparse(self.path) + query_params = urlparse.parse_qs(o.query) + + self.send_response(200) + self.send_header("Content-Type", "application/json") + self.end_headers() + + if 'token' not in query_params: + self.tokenError() + + if o.path == '/self/get': # добавить проверку параметров в куери парамсах + self.wfile.write(bytes(self._SelfGet(), 'utf-8')) + elif o.path == '/events/get': + self.wfile.write(bytes(self._EventsGet(), 'utf-8')) + elif o.path == '/chats/getInfo': + self.wfile.write(bytes(self._GetInfo(), 'utf-8')) + else: + self.defaultOk() + + def _SelfGet(self): + return "{\ + \"firstName\": \"test_bot\",\ + \"nick\": \"test_bot\",\ + \"userId\": \"100000\",\ + \"ok\": true\ + }" + + def _EventsGet(self): + return "{\ + \"ok\": true,\ + \"events\": [\ + {\ + \"eventId\": 1,\ + \"type\": \"newMessage\",\ + \"payload\": {\ + \"msgId\": \"57883346846815030\",\ + \"chat\": {\ + \"chatId\": \"681869378@chat.agent\",\ + \"type\": \"channel\",\ + \"title\": \"The best channel\"\ + },\ + \"from\": {\ + \"userId\": \"1234567890\",\ + \"firstName\": \"Name\",\ + \"lastName\": \"SurName\"\ + },\ + \"timestamp\": 1546290000,\ + \"text\": \"Hello!\",\ + \"parts\": [\ + {\ + \"type\": \"sticker\",\ + \"payload\": {\ + \"fileId\": \"2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU\"\ + }\ + }\ + ]\ + }\ + },\ + {\ + \"eventId\": 2,\ + \"type\": \"editedMessage\",\ + \"payload\": {\ + \"msgId\": \"57883346846815030\",\ + \"chat\": {\ + \"chatId\": \"681869378@chat.agent\",\ + \"type\": \"channel\",\ + \"title\": \"The best channel\"\ + },\ + \"from\": {\ + \"userId\": \"1234567890\",\ + \"firstName\": \"Name\",\ + \"lastName\": \"SurName\"\ + },\ + \"timestamp\": 1546290000,\ + \"text\": \"Hello!\",\ + \"editedTimestamp\": 1546290099\ + }\ + }\ + ]\ + }" + + def _GetInfo(self): + return "{\ + \"about\": \"some text\",\ + \"firstName\": \"first\",\ + \"language\": \"en\",\ + \"lastName\": \"last\",\ + \"type\": \"private\",\ + \"ok\": true\ + }" + + def tokenError(self): + self.wfile.write(bytes("{\"ok\": false, \"description\": \"Invalid token\"}", "utf-8")) + + def badRequest(self): + self.wfile.write(bytes("{\"ok\": false, \"description\": \"bad request\"}", "utf-8")) + + def defaultOk(self): + self.wfile.write(bytes("{\"ok\": true, \"description\": \"ok\"}", "utf-8")) + + +def startServer(): + webServer = HTTPServer((hostName, serverPort), MyServer) + + try: + webServer.serve_forever() + except KeyboardInterrupt: + pass + + webServer.server_close() + + +if __name__ == "__main__": + startServer() diff --git a/example/test_bot_new.py b/example/test_bot_new.py new file mode 100644 index 0000000..e3e07bb --- /dev/null +++ b/example/test_bot_new.py @@ -0,0 +1,78 @@ +import pytest +from bot.bot import Bot +from threading import Thread + +import server + +NAME = "" +VERSION = "0.0.0" +TOKEN = "XXX.XXXXXXXXXX.XXXXXXXXXX:XXXXXXXXX" +OWNER = "XXXXXXXXX" +TEST_CHAT = "XXXXX" +TEST_USER = "XXXXX" +API_URL = "http://localhost:8080" + + +bot = Bot(token=TOKEN, api_url_base=API_URL, is_myteam=True) + + +@pytest.fixture(scope='session', autouse=True) +def launch_server(): + thread = Thread(target=server.startServer) + thread.daemon = True + thread.start() + + +def test_EventsGet(): + response = bot.events_get(1, 0) + if "description" in response.json(): + pytest.xfail(response.json()["description"]) + + assert "events" in response.json() + for event in response.json()["events"]: + if "type" not in event or "payload" not in event: + pytest.xfail("Bad format of response") + + +def test_SelfGet(): + response = bot.self_get() + if "description" in response.json(): + pytest.xfail(response.json()["description"]) + + if "ok" not in response.json() or response.json()["ok"] is False: + pytest.xfail("Answer isn't ok") + + if ( + "firstName" not in response.json() or "nick" not in response.json() or + "userId" not in response.json() + ): + pytest.xfail(response.json()["description"]) + + +def test_chats_GetInfo_OK(): + response = bot.get_chat_info(TEST_CHAT) + assert response + + if "description" in response.json(): + pytest.xfail(response.json()["description"]) + + if "ok" not in response.json() or response.json()["ok"] is False: + pytest.xfail("Answer isn't ok") + + if ( + "about" not in response.json() or "language" not in response.json() or + "firstName" not in response.json() or "lastName" not in response.json() + ): + pytest.xfail("Bad format of response 'getInfo'") + + +def test_chats_GetInfo_ERROR(): + pass # response = bot.get_chat_info("111") + + +def test_plug_error(): + pytest.xfail("Plug") + + +def test_plug_ok(): + pass diff --git a/log/pytest.log b/log/pytest.log new file mode 100644 index 0000000..5563897 --- /dev/null +++ b/log/pytest.log @@ -0,0 +1,676 @@ +[2024.04.05 15:28:58,275] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:28:58,276] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:28:58 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.05 15:28:58,276] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:29:48,285] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:29:48,286] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:29:48 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.05 15:29:48,286] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:30:37,726] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:30:37,727] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:30:37 GMT + +[binary data] + +[2024.04.05 15:30:37,727] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:33:29,963] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:33:29,963] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:33:29 GMT + +[binary data] + +[2024.04.05 15:33:29,963] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:33:36,570] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:33:36,570] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:33:36 GMT + +[binary data] + +[2024.04.05 15:33:36,570] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:34:00,766] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:34:00,767] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:34:00 GMT + +[binary data] + +[2024.04.05 15:34:00,767] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:34:18,7] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:34:18,7] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:34:18 GMT + +[binary data] + +[2024.04.05 15:34:18,8] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:34:43,128] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:34:43,128] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:34:43 GMT + +[binary data] + +[2024.04.05 15:34:43,128] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 15:39:22,893] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:39:22,894] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:39:22 GMT + +[binary data] + +[2024.04.05 15:39:22,894] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'description': 'bad request'} + +[2024.04.05 15:39:58,351] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:39:58,352] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:39:58 GMT + +[binary data] + +[2024.04.05 15:39:58,352] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'description': 'bad request'} + +[2024.04.05 15:40:21,872] DEBUG (bot.bot) (bot.py#send:591): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:40:21,873] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:40:21 GMT + +[binary data] + +[2024.04.05 15:40:21,873] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'description': 'bad request'} + +[2024.04.05 15:42:20,944] DEBUG (bot.bot) (bot.py#send:594): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:42:20,944] DEBUG (bot.bot) (bot.py#send:607): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:42:20 GMT + +[binary data] + +[2024.04.05 15:42:20,944] DEBUG (bot.bot) (bot.py#events_get:175): {'ok': False, 'description': 'bad request'} + +[2024.04.05 15:45:27,251] DEBUG (bot.bot) (bot.py#send:592): GET http://127.0.0.1:8080/events/get?token=test.tokex.XXXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=test.tokex.XXXXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 15:45:27,252] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 12:45:27 GMT + +[binary data] + +[2024.04.05 15:45:27,252] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': False, 'description': 'bad request'} + +[2024.04.05 16:21:20,884] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:21:20,885] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:21:20 GMT + +[binary data] + +[2024.04.05 16:21:20,885] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': False, 'description': 'bad request'} + +[2024.04.05 16:21:48,395] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:21:48,396] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:21:48 GMT + +[binary data] + +[2024.04.05 16:21:48,396] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 16:32:45,440] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:32:45,441] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:32:45 GMT + +[binary data] + +[2024.04.05 16:32:45,453] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:32:45,454] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:32:45 GMT + +[binary data] + +[2024.04.05 16:32:45,456] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:32:45,457] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:32:45 GMT + +[binary data] + +[2024.04.05 16:33:11,863] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:33:11,865] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:33:11 GMT + +[binary data] + +[2024.04.05 16:33:11,865] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': False, 'Description': 'bad request'} + +[2024.04.05 16:33:11,878] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:33:11,879] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:33:11 GMT + +[binary data] + +[2024.04.05 16:33:11,881] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:33:11,882] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:33:11 GMT + +[binary data] + +[2024.04.05 16:33:11,884] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: None/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 16:33:11,885] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 13:33:11 GMT + +[binary data] + +[2024.04.05 17:16:34,860] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:16:34,861] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:16:34 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:16:34,861] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:16:34,862] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:16:34,862] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:16:34 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:16:34,863] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:16:34,864] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:16:34 GMT +Content-Type: application/json + + + +[2024.04.05 17:16:34,887] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:16:34,888] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:16:34 GMT +Content-Type: application/json + + + +[2024.04.05 17:23:58,792] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:23:58,793] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:23:58 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:23:58,793] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:23:58,794] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:23:58,795] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:23:58 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:23:58,795] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:23:58,796] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:23:58 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:23:58,797] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:23:58,798] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:23:58 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:27:45,634] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:27:45,635] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:27:45 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:27:45,636] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:27:45,637] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:27:45,637] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:27:45 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:27:45,640] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:27:45,641] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:27:45 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:27:45,642] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:27:45,643] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:27:45 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:34:11,809] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:34:11,810] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:34:11 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:34:11,810] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:34:11,811] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:34:11,812] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:34:11 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:34:11,815] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:34:11,815] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:34:11 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:34:11,816] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:34:11,817] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:34:11 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:37:12,378] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:37:12,379] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:37:12 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:37:12,379] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:37:12,380] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:37:12,381] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:37:12 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:37:12,384] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:37:12,385] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:37:12 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:37:12,386] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:37:12,386] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:37:12 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:39:18,551] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:18,552] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:18 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:39:18,552] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:39:18,553] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:18,554] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:18 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:39:18,555] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:18,555] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:18 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:39:18,556] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:18,557] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:18 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:39:27,270] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=1&lastEventId=0 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:27,270] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:27 GMT +Content-Type: application/json + +{ "ok": true, "events": [ { "eventId": 1, "type": "newMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "parts": [ { "type": "sticker", "payload": { "fileId": "2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU" } } ] } }, { "eventId": 2, "type": "editedMessage", "payload": { "msgId": "57883346846815030", "chat": { "chatId": "681869378@chat.agent", "type": "channel", "title": "The best channel" }, "from": { "userId": "1234567890", "firstName": "Name", "lastName": "SurName" }, "timestamp": 1546290000, "text": "Hello!", "editedTimestamp": 1546290099 } } ] } + +[2024.04.05 17:39:27,271] DEBUG (bot.bot) (bot.py#events_get:173): {'ok': True, 'events': [{'eventId': 1, 'type': 'newMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'parts': [{'type': 'sticker', 'payload': {'fileId': '2IWuJzaNWCJZxJWCvZhDYuJ5XDsr7hU'}}]}}, {'eventId': 2, 'type': 'editedMessage', 'payload': {'msgId': '57883346846815030', 'chat': {'chatId': '681869378@chat.agent', 'type': 'channel', 'title': 'The best channel'}, 'from': {'userId': '1234567890', 'firstName': 'Name', 'lastName': 'SurName'}, 'timestamp': 1546290000, 'text': 'Hello!', 'editedTimestamp': 1546290099}}]} + +[2024.04.05 17:39:27,271] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:27,272] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:27 GMT +Content-Type: application/json + +{ "firstName": "test_bot", "nick": "test_bot", "userId": "100000", "ok": true } + +[2024.04.05 17:39:27,273] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXX +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:27,274] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:27 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + +[2024.04.05 17:39:27,275] DEBUG (bot.bot) (bot.py#send:592): GET http://localhost:8080/chats/getInfo?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=111 +User-Agent: test_bot/base (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.05 17:39:27,275] DEBUG (bot.bot) (bot.py#send:605): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Fri, 05 Apr 2024 14:39:27 GMT +Content-Type: application/json + +{ "about": "some text", "firstName": "first", "language": "en", "lastName": "last", "type": "private", "ok": true } + diff --git a/log/test_bot.log b/log/test_bot.log new file mode 100644 index 0000000..f6f87c6 --- /dev/null +++ b/log/test_bot.log @@ -0,0 +1,19009 @@ +[2024.04.04 19:01:15,308] INFO (bot.bot) (bot.py#start_polling:123): Starting polling. + +[2024.04.04 19:01:15,311] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/self/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,311] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,313] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,313] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,313] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,313] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/messages/sendText?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&chatId=XXXXXXXXX&text=Hello +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,314] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,314] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,314] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,315] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,315] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,316] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,316] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,316] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,317] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,317] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,317] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,318] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,318] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,318] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,319] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,319] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,319] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,320] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,320] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,320] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,321] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,321] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,321] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,322] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,322] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,322] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,323] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,323] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,323] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,324] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,324] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,324] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,325] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,325] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,326] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,326] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,326] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,327] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,327] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,327] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,328] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,329] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,329] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,329] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,330] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,330] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,330] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,331] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,331] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,332] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,333] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,333] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,333] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,334] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,334] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,334] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,335] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,335] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,335] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,336] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,336] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,337] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,337] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,337] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,338] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,338] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,338] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,339] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,339] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,340] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,340] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,341] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,341] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,341] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,342] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,342] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,342] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,343] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,343] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,343] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,344] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,344] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,344] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,345] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,345] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,346] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,347] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,347] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,347] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,348] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,348] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,348] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,349] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,349] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,349] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,350] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,350] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,350] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,351] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,351] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,352] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,352] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,352] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,353] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,353] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,354] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,354] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,355] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,355] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,355] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,356] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,356] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,356] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,357] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,357] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,357] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,358] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,358] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,358] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,359] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,359] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,359] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,360] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,360] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,360] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,361] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,361] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,362] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,362] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,362] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,363] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,364] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,364] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,364] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,365] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,365] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,365] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,366] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,366] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,366] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,367] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,367] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,367] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,368] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,368] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,368] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,369] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,369] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,369] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,370] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,370] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,371] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,371] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,371] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,372] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,372] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,372] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,373] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,373] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,373] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,374] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,375] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,375] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,375] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,376] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,376] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,376] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,377] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,377] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,377] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,378] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,378] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,378] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,379] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,379] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,379] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,380] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,380] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,381] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,381] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,381] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,382] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,382] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,382] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,383] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,383] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,383] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,384] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,384] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,384] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,385] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,386] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,386] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,386] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,387] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,387] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,387] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,388] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,388] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,388] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,389] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,389] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,389] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,390] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,390] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,390] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,391] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,391] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,391] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,392] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,392] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,393] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,393] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,393] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,394] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,394] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,394] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,395] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,396] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,396] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,396] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,397] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,397] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,397] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,398] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,398] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,398] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,399] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,399] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,399] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,400] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,400] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,401] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,401] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,401] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,402] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,402] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,402] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,403] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,404] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,404] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,404] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,405] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,405] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,405] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,406] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,406] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,406] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,407] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,407] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,407] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,408] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,408] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,408] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,409] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,409] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,410] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,410] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,410] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,411] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,411] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,411] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,412] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,413] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,413] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,413] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,414] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,414] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,414] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,415] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,415] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,415] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,416] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,416] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,416] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,417] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,417] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,417] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,418] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,418] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,418] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,419] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,419] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,419] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,420] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,420] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,421] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,421] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,421] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,422] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,422] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,422] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,423] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,423] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,423] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,424] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,424] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,425] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,425] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,426] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,426] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,426] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,427] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,427] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,427] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,428] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,428] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,429] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,429] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,429] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,430] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,430] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,430] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,431] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,432] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,432] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,432] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,433] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,433] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,433] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,434] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,434] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,434] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,435] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,435] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,435] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,436] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,436] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,436] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,437] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,437] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,437] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,438] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,438] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,438] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,439] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,439] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,440] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,440] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,440] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,441] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,441] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,441] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,442] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,443] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,443] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,443] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,444] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,444] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,444] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,445] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,445] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,445] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,446] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,446] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,447] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,447] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,447] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,448] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,448] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,448] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,449] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,450] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,450] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,450] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,451] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,451] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,451] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,452] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,452] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,452] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,453] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,453] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,453] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,454] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,454] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,454] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,455] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,455] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,455] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,456] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,456] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,457] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,457] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,457] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,458] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,458] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,458] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,459] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,459] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,459] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,460] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,461] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,461] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,461] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,462] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,462] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,462] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,463] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,463] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,463] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,464] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,464] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,464] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,465] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,465] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,465] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,466] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,466] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,467] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,467] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,467] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,468] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,468] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,468] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,469] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,470] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,470] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,470] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,471] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,471] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,471] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,472] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,472] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,472] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,473] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,473] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,473] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,474] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,474] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,474] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,475] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,475] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,475] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,476] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,476] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,476] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,477] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,477] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,478] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,478] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,478] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,479] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,480] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,480] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,480] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,481] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,481] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,481] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,482] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,482] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,482] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,483] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,483] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,483] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,484] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,484] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,484] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,485] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,485] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,485] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,486] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,486] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,486] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,487] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,487] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,488] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,488] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,488] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,489] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,489] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,490] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,490] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,491] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,491] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,491] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,492] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,492] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,492] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,493] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,493] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,493] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,496] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,496] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,497] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,498] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,499] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,499] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,500] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,500] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,500] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,501] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,501] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,502] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,503] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,503] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,503] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,504] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,504] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,504] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,505] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,505] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,505] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,506] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,506] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,506] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,507] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,507] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,508] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,508] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,508] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,509] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,510] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,510] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,510] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,511] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,511] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,511] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,512] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,512] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,512] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,513] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,513] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,514] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,514] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,514] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,515] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,515] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,515] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,516] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,516] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,517] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,517] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,518] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,518] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,518] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,519] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,519] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,519] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,520] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,520] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,520] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,521] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,521] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,521] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,522] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,522] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,522] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,524] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,524] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,524] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,525] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,525] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,525] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,526] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,526] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,526] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,527] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,527] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,527] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,528] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,528] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,528] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,529] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,529] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,530] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,530] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,530] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,531] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,531] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,531] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,532] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,532] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,532] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,533] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,534] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,534] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,534] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,535] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,535] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,535] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,536] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,536] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,536] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,537] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,537] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,537] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,538] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,538] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,539] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,539] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,539] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,540] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,540] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,540] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,541] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,541] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,541] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,542] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,543] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,543] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,543] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,544] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,544] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,544] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,545] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,545] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,546] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,546] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,546] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,547] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,547] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,547] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,548] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,548] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,548] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,549] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,549] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,550] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,550] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,551] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,551] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,551] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,552] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,552] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,552] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,553] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,553] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,553] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,554] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,554] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,554] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,555] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,555] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,555] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,556] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,556] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,556] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,557] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,557] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,558] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,558] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,558] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,559] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,559] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,559] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,560] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,560] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,560] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,561] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,562] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,562] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,562] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,563] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,563] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,563] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,564] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,564] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,564] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,565] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,565] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,565] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,566] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,566] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,566] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,567] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,567] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,567] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,568] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,568] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,568] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,569] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,569] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,570] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,570] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,570] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,571] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,571] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,571] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,572] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,573] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,573] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,573] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,574] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,574] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,574] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,575] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,575] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,575] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,576] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,576] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,576] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,577] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,577] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,577] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,578] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,578] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,579] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,579] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,579] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,580] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,580] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,580] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,581] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,582] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,582] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,582] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,583] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,583] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,583] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,584] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,584] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,584] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,585] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,585] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,585] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,586] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,586] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,586] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,587] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,587] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,587] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,588] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,588] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,589] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,589] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,589] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,590] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,590] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,590] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,591] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,591] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,591] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,592] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,592] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,593] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,593] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,594] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,594] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,594] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,595] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,595] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,595] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,596] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,596] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,596] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,597] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,597] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,598] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,598] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,598] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,599] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,600] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,600] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,600] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,601] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,601] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,601] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,602] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,602] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,602] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,603] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,603] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,603] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,604] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,604] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,604] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,605] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,605] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,605] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,606] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,606] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,607] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,607] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,607] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,608] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,609] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,609] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,609] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,610] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,610] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,610] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,611] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,611] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,611] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,612] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,612] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,612] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,613] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,613] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,613] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,614] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,614] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,614] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,615] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,615] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,615] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,616] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,616] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,617] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,617] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,617] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,618] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,618] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,619] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,619] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,620] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,620] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,620] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,621] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,621] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,621] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,622] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,622] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,622] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,623] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,623] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,623] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,624] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,624] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,624] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,625] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,625] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,625] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,626] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,626] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,626] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,627] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,627] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,627] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,628] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,628] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,628] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,629] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,629] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,629] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,630] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,630] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,630] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,631] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,631] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,632] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,632] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,632] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,633] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,633] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,633] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,634] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,635] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,635] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,635] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,636] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,636] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,636] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,637] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,637] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,637] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,638] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,638] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,638] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,639] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,639] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,639] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,640] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,640] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,641] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,641] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,641] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,642] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,642] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,643] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,643] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,644] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,644] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,644] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,645] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,645] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,645] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,646] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,646] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,646] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,647] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,647] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,647] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,648] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,648] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,648] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,649] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,649] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,649] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,650] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,650] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,650] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,651] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,651] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,651] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,652] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,652] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,653] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,653] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,653] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,654] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,654] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,654] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,655] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,656] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,656] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,656] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,657] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,657] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,657] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,658] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,658] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,658] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,659] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,659] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,659] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,660] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,660] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,660] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,661] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,661] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,662] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,662] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,662] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,663] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,663] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,663] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,664] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,664] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,664] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,665] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,666] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,666] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,666] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,667] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,667] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,667] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,668] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,668] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,668] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,669] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,669] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,669] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,670] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,670] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,670] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,671] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,671] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,671] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,672] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,672] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,672] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,673] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,673] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,673] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,674] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,674] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,675] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,675] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,675] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,676] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,676] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,676] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,677] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,677] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,678] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,678] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,679] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,679] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,679] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,680] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,680] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,680] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,681] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,681] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,681] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,682] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,682] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,682] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,683] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,683] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,683] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,684] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,684] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,684] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,685] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,685] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,685] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,686] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,686] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,686] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,687] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,687] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,687] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,688] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,688] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,688] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,689] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,689] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,690] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,690] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,690] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,691] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,691] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,691] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,692] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,692] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,692] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,693] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,693] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,693] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,694] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,695] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,695] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,695] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,696] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,696] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,696] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,697] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,697] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,697] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,698] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,698] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,698] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,699] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,699] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,699] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,700] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,700] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,700] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,701] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,701] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,701] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,702] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,702] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,702] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,703] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,703] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,703] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,704] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,704] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,704] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,705] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,705] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,705] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,706] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,706] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,706] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,707] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,707] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,707] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,708] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,708] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,709] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,709] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,709] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,710] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,710] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,710] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,711] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,711] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,712] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,712] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,713] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,713] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,713] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,714] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,714] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,714] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,715] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,715] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,715] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,716] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,716] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,716] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,717] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,717] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,717] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,718] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,718] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,718] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,719] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,719] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,719] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,720] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,720] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,720] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,721] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,721] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,721] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,722] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,722] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,722] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,723] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,723] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,723] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,724] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,724] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,724] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,725] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,725] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,725] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,726] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,726] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,726] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,727] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,727] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,727] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,728] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,728] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,729] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,729] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,729] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,730] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,730] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,730] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,731] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,731] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,731] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,732] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,732] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,732] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,733] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,733] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,734] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,734] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,734] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,734] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,735] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,735] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,736] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,736] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,736] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,737] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,737] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,737] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,738] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,738] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,739] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,739] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,739] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,740] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,740] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,740] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,741] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,741] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,741] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,742] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,742] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,742] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,743] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,743] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,743] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,745] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,745] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,747] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,749] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,750] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,753] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,755] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,755] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,756] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,758] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,758] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,763] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,766] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,766] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,767] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,768] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,769] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,769] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,770] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,770] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,770] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,771] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,771] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,771] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,773] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,773] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,774] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,776] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,776] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,777] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,778] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,779] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,779] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,780] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,780] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,781] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,781] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,781] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,782] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,783] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,783] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,783] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,784] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,784] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,784] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,785] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,785] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,785] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,786] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,786] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,787] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,788] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,788] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,788] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,789] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,789] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,789] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,790] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,790] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,790] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,791] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,791] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,791] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,792] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,792] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,793] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,793] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,793] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,794] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,794] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,795] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,795] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,796] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,796] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,796] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,797] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,797] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,797] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,798] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,798] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,798] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,799] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,799] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,799] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,800] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,800] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,800] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,801] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,801] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,801] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,802] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,802] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,803] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,803] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,803] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,804] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,804] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,804] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,805] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,805] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,806] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,806] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,807] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,807] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,807] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,808] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,808] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,808] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,809] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,809] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,809] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,810] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,810] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,810] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,811] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,811] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,811] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,812] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,812] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,813] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,813] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,813] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,814] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,814] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,814] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,815] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,815] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,815] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,816] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,816] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,816] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,817] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,817] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,817] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,818] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,819] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,819] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,819] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,820] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,820] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,820] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,821] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,821] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,821] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,822] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,822] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,822] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,823] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,823] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,823] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,824] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,824] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,824] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,825] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,825] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,826] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,826] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,827] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,827] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,828] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,828] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,828] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,829] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,829] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,829] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,830] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,830] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,830] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,831] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,831] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,831] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,832] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,832] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,833] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,833] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,833] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,834] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,834] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,834] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,835] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,835] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,835] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,836] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,837] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,837] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,837] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,838] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,838] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,838] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,839] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,839] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,839] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,840] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,840] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,840] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,841] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,841] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,841] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,842] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,842] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,842] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,843] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,843] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,844] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,845] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,845] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,845] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,846] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,846] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,846] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,847] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,847] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,847] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,848] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,848] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,848] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,849] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,849] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,849] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,850] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,850] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,850] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,851] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,851] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,851] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,852] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,852] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,852] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,853] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,853] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,853] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,854] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,854] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,854] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,855] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,855] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,855] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,856] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,856] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,856] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,857] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,857] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,857] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,858] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,858] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,858] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,859] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,859] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,859] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,860] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,860] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,861] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,861] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,861] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,862] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,862] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,862] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,863] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,863] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,863] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,864] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,864] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,864] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,865] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,865] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,865] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,866] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,866] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,867] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,867] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,868] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,868] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,868] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,869] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,869] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,869] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,870] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,870] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,870] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,871] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,871] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,871] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,872] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,872] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,872] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,873] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,873] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,873] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,874] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,874] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,874] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,875] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,875] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,875] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,876] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,876] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,876] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,877] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,877] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,877] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,878] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,878] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,878] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,879] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,879] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,879] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,880] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,880] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,881] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,881] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,881] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,882] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,882] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,882] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,883] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,883] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,883] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,884] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,884] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,884] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,885] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,885] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,886] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,886] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,886] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,887] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,887] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,887] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,887] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,888] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,889] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,889] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,889] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,890] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,890] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,890] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,891] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,891] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,891] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,892] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,892] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,892] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,893] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,893] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,893] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,894] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,894] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,894] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,895] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,895] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,895] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,896] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,896] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,896] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,897] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,897] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,897] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,898] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,898] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,898] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,899] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,899] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,899] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,900] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,900] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,901] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,901] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,901] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,902] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,902] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,902] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,903] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,903] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,903] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,904] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,904] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,905] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,905] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,906] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,906] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,906] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,907] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,907] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,907] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,908] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,908] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,908] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,909] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,909] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,909] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,910] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,910] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,910] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,911] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,911] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,911] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,912] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,912] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,912] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,913] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,913] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,913] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,914] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,914] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,914] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,915] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,915] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,916] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,916] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,916] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,917] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,917] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,917] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,918] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,918] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,918] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,919] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,919] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,919] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,920] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,921] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,921] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,921] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,922] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,922] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,922] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,923] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,923] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,923] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,924] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,924] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,924] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,925] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,925] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,925] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,926] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,926] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,926] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,927] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,927] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,927] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,928] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,928] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,928] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,929] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,929] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,929] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,930] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,930] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,930] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,931] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,931] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,932] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,932] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,932] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,933] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,933] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,933] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,934] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,934] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,934] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,935] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,935] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,936] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,936] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,937] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,937] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,937] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,938] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,938] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,938] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,939] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,939] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,939] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,940] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,940] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,940] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,941] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,941] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,941] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,942] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,942] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,942] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,943] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,943] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,943] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,944] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,944] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,944] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,945] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,945] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,945] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,946] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,946] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,946] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,947] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,947] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,947] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,948] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,948] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,949] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,949] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,949] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,950] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,950] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,950] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,951] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,951] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,951] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,952] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,952] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,952] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,953] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,953] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,953] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,954] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,954] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,954] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,955] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,955] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,955] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,956] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,957] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,957] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,957] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,958] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,958] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,958] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,959] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,959] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,959] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,960] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,960] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,960] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,961] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,961] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,961] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,962] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,962] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,962] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,963] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,963] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,963] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,964] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,964] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,964] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,965] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,965] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,965] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,966] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,966] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,966] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,967] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,967] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,967] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,968] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,968] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,968] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,969] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,969] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,969] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,970] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,970] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,970] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,971] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,971] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,971] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,972] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,972] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,972] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,973] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,973] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,974] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,974] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,974] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,974] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,975] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,975] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,976] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,976] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,976] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,977] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,977] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,977] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,978] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,978] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,978] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,979] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,980] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,980] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,980] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,981] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,981] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,981] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,982] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,982] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,982] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,983] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,983] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,983] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,984] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,984] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,984] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,985] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,985] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,985] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,986] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,986] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,986] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,987] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,987] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,987] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,988] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,988] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,988] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,989] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,989] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,989] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,990] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,990] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,990] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,991] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,991] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,991] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,992] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,992] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,992] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,993] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,993] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,994] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,994] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,994] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,995] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,995] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,995] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,996] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,996] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,996] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,997] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,997] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,998] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,998] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,998] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:15,999] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:15,999] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:15,999] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:15 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,0] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,0] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,1] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,1] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,1] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,2] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,2] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,2] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,3] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,3] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,3] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,4] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,4] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,4] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,5] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,5] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,5] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,6] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,6] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,6] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,7] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,7] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,8] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,8] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,8] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,9] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,9] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,9] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,10] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,10] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,10] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,11] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,11] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,11] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,12] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,12] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,12] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,13] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,13] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,14] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,14] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,15] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,15] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,15] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,16] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,16] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,16] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,17] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,17] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,17] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,18] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,18] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,18] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,19] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,19] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,19] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,20] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,20] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,20] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,21] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,21] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,22] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,22] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,22] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,23] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,23] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,23] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,24] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,25] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,25] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,25] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,26] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,26] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,26] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,27] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,27] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,27] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,28] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,28] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,28] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,29] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,29] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,30] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,31] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,31] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,31] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,32] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,32] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,32] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,33] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,33] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,33] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,34] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,34] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,34] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,35] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,35] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,35] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,36] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,36] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,36] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,37] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,37] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,37] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,38] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,38] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,38] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,39] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,39] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,40] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,40] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,40] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,41] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,41] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,41] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,42] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,42] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,42] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,43] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,43] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,43] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,44] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,44] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,44] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,45] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,45] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,46] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,46] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,47] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,47] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,47] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,48] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,48] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,48] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,49] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,49] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,49] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,50] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,50] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,50] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,51] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,51] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,51] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,52] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,52] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,52] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,53] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,53] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,53] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,54] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,54] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,54] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,55] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,55] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,55] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,56] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,56] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,56] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,57] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,57] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,57] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,58] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,58] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,58] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,59] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,59] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,59] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,60] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,60] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,60] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,61] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,61] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,61] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,62] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,62] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,62] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,63] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,63] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,63] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,64] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,64] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,64] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,65] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,65] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,65] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,66] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,66] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,67] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,67] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,67] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,68] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,68] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,68] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,69] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,69] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,69] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,70] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,70] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,70] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,71] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,71] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,71] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,72] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,72] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,72] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,73] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,73] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,74] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,74] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,74] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,74] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,75] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,75] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,75] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,76] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,77] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,77] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,77] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,78] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,78] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,78] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,79] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,79] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,79] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,80] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,80] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,80] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,81] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,81] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,81] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,82] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,82] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,82] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,83] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,83] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,83] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,84] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,84] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,84] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,85] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,85] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,85] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,86] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,86] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,86] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,87] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,87] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,87] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,88] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,88] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,88] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,89] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,89] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,89] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,90] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,90] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,90] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,91] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,91] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,91] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,92] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,92] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,92] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,93] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,93] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,93] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,94] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,94] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,94] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,95] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,95] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,96] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,96] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,96] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,97] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,97] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,97] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,98] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,98] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,98] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,99] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,99] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,99] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,100] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,100] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,100] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,101] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,101] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,101] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,102] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,102] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,102] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,103] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,103] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,104] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,104] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,104] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,105] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,105] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,105] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,106] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,106] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,107] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,107] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,107] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,107] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,108] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,108] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,109] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,109] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,109] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,109] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,110] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,110] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,110] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,111] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,111] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,111] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,111] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,112] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,113] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,113] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,113] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,113] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,114] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,114] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,115] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,115] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,115] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,116] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,116] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,116] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,117] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,117] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,117] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,118] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,118] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,118] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,119] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,119] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,119] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,120] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,120] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,120] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,121] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,121] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,121] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,122] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,122] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,122] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,123] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,123] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,123] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,124] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,124] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,124] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,125] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,125] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,125] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,126] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,126] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,126] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,127] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,127] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,127] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,128] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,128] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,128] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,129] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,129] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,130] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,130] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,130] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,131] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,131] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,131] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,132] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,132] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,132] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,133] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,133] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,133] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,134] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,134] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,134] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,135] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,135] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,136] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,136] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,136] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,136] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,137] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,137] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,137] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,138] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,138] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,138] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,139] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,139] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,139] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,140] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,140] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,140] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,141] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,141] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,141] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,142] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,142] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,142] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,143] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,143] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,143] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,144] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,144] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,144] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,145] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,145] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,145] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,146] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,146] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,147] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,147] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,148] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,148] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,148] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,148] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,149] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,149] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,150] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,150] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,150] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,151] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,151] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,151] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,152] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,152] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,152] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,153] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,153] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,153] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,154] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,154] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,154] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,155] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,155] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,155] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,155] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,156] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,156] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,157] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,157] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,157] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,158] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,158] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,158] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,159] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,159] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,159] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,160] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,160] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,160] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,161] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,161] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,161] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,162] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,162] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,162] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,163] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,163] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,163] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,164] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,164] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,164] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,165] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,165] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,165] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,166] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,166] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,166] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,167] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,167] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,167] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,168] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,168] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,168] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,169] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,169] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,170] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,170] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,170] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,171] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,171] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,171] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,172] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,172] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,172] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,173] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,173] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,173] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,174] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,174] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,175] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,175] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,175] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,175] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,176] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,176] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,176] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,177] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,177] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,177] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,177] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,178] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,178] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,178] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,179] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,179] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,179] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,180] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,180] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,180] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,181] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,181] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,181] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,182] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,182] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,182] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,183] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,183] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,183] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,183] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,184] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,184] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,184] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,184] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,185] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,185] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,185] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,186] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,186] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,186] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,187] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,187] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,187] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,187] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,188] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,188] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,188] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,189] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,189] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,189] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,190] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,190] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,190] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,191] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,191] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,191] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,192] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,192] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,193] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,194] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,194] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,194] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,195] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,195] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,195] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,196] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,196] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,197] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,197] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,197] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,198] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,198] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,198] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,199] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,199] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,199] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,200] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,200] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,201] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,201] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,202] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,202] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,202] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,203] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,203] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,203] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,204] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,204] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,204] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,205] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,205] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,205] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,206] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,206] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,206] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,207] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,207] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,207] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,208] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,208] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,208] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,209] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,209] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,209] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,210] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,210] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,210] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,211] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,211] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,211] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,212] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,212] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,212] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,213] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,213] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,213] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,214] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,214] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,215] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,215] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,215] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,216] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,216] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,216] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,217] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,217] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,218] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,218] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,219] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,219] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,219] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,220] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,220] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,220] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,221] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,221] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,221] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,222] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,222] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,222] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,223] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,223] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,223] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,224] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,224] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,224] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,225] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,225] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,225] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,226] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,226] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,226] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,227] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,227] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,227] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,228] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,228] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,229] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,229] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,229] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,230] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,230] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,230] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,231] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,231] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,231] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,232] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,233] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,233] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,233] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,234] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,234] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,234] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,235] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,235] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,235] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,236] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,236] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,236] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,237] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,237] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,237] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,238] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,238] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,238] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,239] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,239] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,239] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,240] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,240] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,240] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,241] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,241] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,241] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,242] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,242] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,242] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,243] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,243] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,243] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,244] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,244] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,244] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,245] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,245] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,245] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,246] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,246] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,246] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,247] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,247] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,247] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,248] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,248] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,248] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,249] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,249] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,249] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,250] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,250] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,250] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,251] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,251] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,251] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,252] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,252] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,252] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,253] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,253] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,254] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,254] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,254] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,255] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,255] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,255] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,256] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,256] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,256] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,256] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,257] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,257] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,257] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,258] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,258] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,258] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,259] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,259] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,260] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,260] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,260] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,261] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,261] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,261] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,262] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,262] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,262] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,263] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,263] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,264] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,264] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,265] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,265] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,265] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,266] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,266] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,266] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,267] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,267] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,267] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,268] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,268] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,269] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,269] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,269] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,270] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,270] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,270] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,271] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,271] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,271] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,272] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,272] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,272] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,273] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,274] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,274] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,274] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,275] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,275] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,276] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,276] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,276] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,277] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,278] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,278] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,278] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,279] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,279] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,279] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,280] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,280] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,280] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,281] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,281] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,281] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,282] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,282] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,282] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,283] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,283] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,283] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,284] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,284] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,284] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,285] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,285] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,285] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,286] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,286] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,286] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,287] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,287] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,287] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,288] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,288] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,288] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,289] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,289] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,289] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,290] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,290] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,290] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,291] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,291] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,291] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,292] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,292] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,292] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,293] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,293] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,293] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,294] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,294] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,294] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,295] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,295] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,295] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,296] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,296] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,296] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,297] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,297] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,297] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,298] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,298] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,298] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,299] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,299] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,299] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,300] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,300] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,300] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,301] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,301] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,301] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,302] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,302] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,302] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,303] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,303] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,303] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,304] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,304] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,304] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,305] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,305] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,305] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,306] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,306] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,306] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,307] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,307] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,307] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,308] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,308] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,308] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,309] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,309] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,309] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,310] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,310] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,310] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,311] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,311] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,311] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,312] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,312] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,312] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,313] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,313] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,313] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,314] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,314] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,314] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,315] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,315] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,315] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,316] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,316] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,316] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,317] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,317] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,317] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,318] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,318] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,318] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,319] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,319] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,319] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,320] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,320] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,320] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,321] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,321] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,321] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,322] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,322] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,322] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,323] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,323] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,323] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,324] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,324] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,324] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,325] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,325] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,325] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,326] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,326] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,326] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,327] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,327] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,327] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,328] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,328] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,328] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,329] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,329] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,329] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,330] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,330] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,330] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,331] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,331] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,331] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,332] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,332] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,332] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,333] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,333] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,333] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,334] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,334] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,334] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,335] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,335] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,335] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,336] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,336] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,336] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,337] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,337] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,337] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,338] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,338] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,338] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,339] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,339] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,339] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,340] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,340] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,340] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,341] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,341] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,341] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,342] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,342] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,342] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,343] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,343] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,343] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,344] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,344] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,344] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,345] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,345] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,346] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,346] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,346] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,347] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,347] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,347] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,348] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,348] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,348] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,349] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,349] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,349] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,350] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,350] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,350] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,351] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,351] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,351] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,352] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,352] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,352] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,353] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,353] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,353] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,354] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,354] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,354] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,355] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,355] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,355] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,356] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,356] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,356] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,357] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,357] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,357] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,358] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,358] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,358] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,359] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,359] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,359] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,359] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,360] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,360] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,361] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,361] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,361] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,362] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,362] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,362] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,363] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,363] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,363] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,364] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,364] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,364] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,365] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,365] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,365] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,366] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,366] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,366] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,367] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,367] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,367] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,368] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,368] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,368] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,369] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,369] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,369] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,370] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,370] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,370] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,371] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,371] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,371] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,372] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,372] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,372] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,373] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,373] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,373] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,374] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,375] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,375] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,375] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,376] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,376] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,376] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,377] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,377] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,377] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,378] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,378] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,378] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,379] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,379] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,379] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,380] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,380] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,380] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,381] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,381] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,381] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,382] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,382] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,382] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,383] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,383] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,383] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,384] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,384] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,384] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,385] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,385] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,385] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,386] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,386] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,386] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,387] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,387] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,387] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,388] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,388] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,388] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,389] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,389] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,389] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,390] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,390] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,390] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,391] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,391] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,391] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,392] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,392] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,392] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,393] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,393] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,393] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,394] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,394] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,394] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,395] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,395] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,395] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,396] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,396] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,396] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,397] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,397] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,397] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,398] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,398] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,398] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,399] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,399] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,399] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,400] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,400] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,400] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,401] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,401] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,401] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,402] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,402] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,402] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,403] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,403] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,403] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,404] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,404] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,404] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,405] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,405] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,405] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,406] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,406] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,406] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,407] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,407] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,407] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,408] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,408] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,408] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,409] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,409] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,409] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,410] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,410] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,410] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,411] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,411] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,411] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,412] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,412] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,412] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,413] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,413] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,413] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,414] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,414] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,414] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,415] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,415] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,415] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,416] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,416] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,416] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,417] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,417] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,417] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,418] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,418] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,418] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,419] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,419] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,419] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,420] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,420] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,420] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,421] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,421] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,421] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,422] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,422] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,422] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,423] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,423] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,423] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,424] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,424] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,424] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,425] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,425] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,425] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,426] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,426] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,426] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,427] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,427] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,427] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,428] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,428] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,428] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,429] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,429] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,429] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,430] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,430] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,430] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,431] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,431] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,431] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,432] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,432] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,432] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,433] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,433] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,434] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,434] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,434] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,435] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,435] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,435] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,436] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,436] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,436] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,437] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,437] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,437] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,438] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,438] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,439] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,439] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,439] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,440] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,440] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,441] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,441] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,441] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,442] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,442] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,442] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,443] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,443] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,443] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,444] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,444] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,444] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,445] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,445] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,445] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,446] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,446] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,446] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,447] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,447] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,447] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,448] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,448] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,448] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,449] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,449] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,449] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,450] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,450] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,450] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,451] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,451] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,451] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,452] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,452] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,452] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,453] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,453] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,453] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,454] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,454] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,454] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,455] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,455] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,455] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,455] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,456] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,456] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,456] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,457] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,457] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,457] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,457] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,458] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,458] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,458] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,459] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,459] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,459] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,460] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,460] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,460] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,461] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,461] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,462] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,462] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,463] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,463] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,463] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,464] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,464] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,464] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,465] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,465] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,465] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,466] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,466] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,466] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,467] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,467] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,467] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,468] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,468] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,468] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,469] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,469] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,469] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,470] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,470] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,470] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,470] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,471] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,471] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,471] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,471] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,472] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,472] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,472] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,473] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,473] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,473] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,474] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,474] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,474] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,475] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,475] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,476] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,476] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,477] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,477] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,477] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,478] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,478] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,478] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,479] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,479] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,479] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,480] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,480] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,480] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,481] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,481] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,481] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,482] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,482] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,482] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,483] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,483] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,483] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,484] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,484] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,484] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,485] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,485] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,485] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,486] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,486] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,486] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,487] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,487] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,487] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,488] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,488] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,488] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,489] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,489] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,489] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,490] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,490] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,490] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,491] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,491] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,491] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,492] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,492] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,492] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,493] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,493] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,493] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,494] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,494] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,494] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,495] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,495] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,495] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,496] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,496] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,496] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,497] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,497] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,497] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,498] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,498] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,498] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,499] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,499] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,499] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,500] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,500] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,500] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,501] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,501] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,501] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,502] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,502] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,502] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,503] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,503] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,503] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,504] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,504] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,504] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,505] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,505] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,505] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,506] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,506] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,506] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,507] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,507] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,507] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,508] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,508] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,508] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,508] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,509] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,509] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,510] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,510] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,510] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,511] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,511] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,511] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,512] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,512] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,512] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,513] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,513] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,513] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,514] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,514] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,514] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,515] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,515] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,515] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,516] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,516] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,516] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,517] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,517] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,517] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,518] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,518] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,518] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,519] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,519] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,519] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,520] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,520] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,520] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,521] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,521] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,521] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,522] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,522] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,522] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,523] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,523] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,524] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,526] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,526] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,527] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,527] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,527] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,528] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,528] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,528] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,529] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,529] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,529] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,530] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,530] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,531] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,531] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,532] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,532] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,532] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,533] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,533] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,533] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,534] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,534] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,534] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,535] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,535] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,535] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,536] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,536] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,536] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,537] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,537] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,537] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,538] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,538] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,538] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,539] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,539] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,539] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,540] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,540] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,540] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,541] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,541] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,541] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,542] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,542] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,542] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,543] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,543] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,543] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,544] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,544] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,544] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,545] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,545] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,545] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,546] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,546] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,546] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,547] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,547] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,547] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,548] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,548] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,549] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,549] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,549] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,550] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,550] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,550] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,551] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,551] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,551] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,552] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,552] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,552] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,553] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,553] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,553] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,554] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,554] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,554] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,555] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,555] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,555] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,556] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,556] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,556] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,557] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,557] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,557] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,558] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,558] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,558] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,559] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,559] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,559] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,560] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,561] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,561] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,561] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,562] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,562] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,562] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,563] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,563] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,563] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,564] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,564] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,564] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,565] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,565] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,565] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,566] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,566] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,566] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,567] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,567] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,567] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,568] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,568] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,568] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,569] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,569] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,569] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,570] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,570] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,570] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,571] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,571] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,571] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,572] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,572] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,572] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,573] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,573] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,573] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,574] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,574] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,574] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,575] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,575] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,575] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,576] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,576] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,576] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,577] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,577] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,577] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,578] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,578] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,579] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,579] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,579] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,580] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,580] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,580] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,581] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,581] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,581] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,582] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,582] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,582] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,583] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,583] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,583] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,584] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,584] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,584] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,585] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,585] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,586] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,586] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,587] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,587] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,587] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,588] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,588] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,588] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,589] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,589] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,589] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,590] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,590] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,590] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,591] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,591] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,591] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,592] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,592] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,592] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,593] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,593] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,593] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,594] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,594] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,594] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,595] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,595] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,595] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,596] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,596] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,596] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,597] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,597] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,597] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,598] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,598] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,598] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,599] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,599] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,599] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,600] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,600] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,600] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,601] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,601] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,601] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,602] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,602] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,602] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,603] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,603] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,603] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,604] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,604] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,604] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,605] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,605] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,606] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,608] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,608] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,610] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,612] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,612] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,616] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,617] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,617] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,619] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,621] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,621] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,621] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,623] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,623] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,623] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,624] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,624] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,624] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,625] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,626] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,626] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,627] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,627] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,629] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,631] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,631] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,632] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,632] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,633] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,633] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,634] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,634] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,634] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,635] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,635] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,635] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,636] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,636] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,636] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,637] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,637] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,637] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,638] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,638] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,638] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,639] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,639] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,639] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,640] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,640] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,640] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,641] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,641] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,641] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,642] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,642] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,642] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,643] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,643] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,643] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,644] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,644] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,644] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,645] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,645] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,645] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,646] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,646] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,646] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,647] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,647] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,647] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,648] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,648] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,648] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,649] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,649] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,649] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,650] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,650] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,651] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,651] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,651] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,652] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,652] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,652] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,653] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,653] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,653] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,654] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,654] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,654] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,655] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,655] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,655] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,656] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,656] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,656] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,657] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,657] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,657] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,658] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,658] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,659] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,659] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,660] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,660] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,660] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,661] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,661] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,661] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,662] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,662] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,662] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,664] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,664] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,667] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,669] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,669] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,671] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,672] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,672] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,683] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,688] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,688] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,691] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,692] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,692] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,693] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,695] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,696] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,698] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,700] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,701] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,702] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,703] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,703] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,704] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,705] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,705] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,705] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,706] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,706] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,707] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,707] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,707] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,708] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,709] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,709] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,710] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,710] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,710] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,711] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,712] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,712] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,712] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,713] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,713] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,713] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,714] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,714] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,714] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,715] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,715] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,715] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,715] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,716] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,716] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,716] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,716] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,717] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,717] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,717] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,718] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,718] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,719] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,719] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,720] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,720] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,720] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,721] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,721] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,721] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,722] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,722] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,722] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,723] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,723] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,723] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,724] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,724] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,724] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,725] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,725] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,725] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,726] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,726] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,727] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,728] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,728] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,728] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,729] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,729] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,729] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,730] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,730] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,731] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,731] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,731] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,732] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,732] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,732] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,733] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,733] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,733] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,734] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,734] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,734] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,735] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,735] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,735] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,736] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,736] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,736] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,737] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,737] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,737] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,738] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,738] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,738] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,739] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,739] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,740] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,740] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + +[2024.04.04 19:01:16,740] DEBUG (bot.bot) (bot.py#send:604): 200 OK +Server: BaseHTTP/0.6 Python/3.12.2 +Date: Thu, 04 Apr 2024 16:01:16 GMT +Content-type: application/json + +{"ok": false, "Description": "bad request"} + +[2024.04.04 19:01:16,740] DEBUG (bot.bot) (bot.py#events_get:172): {'ok': False, 'Description': 'bad request'} + +[2024.04.04 19:01:16,741] DEBUG (bot.bot) (bot.py#send:591): GET http://localhost:8080/events/get?token=XXX.XXXXXXXXXX.XXXXXXXXXX%3AXXXXXXXXX&pollTime=60&lastEventId=0 +User-Agent: /0.0.0 (uin=XXXXXXXXX) bot-python/0.0.21 +Accept-Encoding: gzip, deflate +Accept: */* +Connection: keep-alive + diff --git a/logo.png b/logo_bot.png similarity index 100% rename from logo.png rename to logo_bot.png diff --git a/logo_msg.png b/logo_msg.png new file mode 100644 index 0000000..a61ef59 Binary files /dev/null and b/logo_msg.png differ diff --git a/requirements.txt b/requirements.txt index 01fa625..bb8f0c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ enum34 == 1.1.6; python_version < "3.4" expiringdict == 1.2.1 monotonic ==1.6 python-baseconv == 1.2.2 -requests ==2.26.0 +requests ==2.31.0 six ==1.16.0 gTTS ==2.2.3 urllib3 ==1.26.7