diff --git a/function/bika/bika.py b/function/bika/bika.py index 93ee347..4c51375 100644 --- a/function/bika/bika.py +++ b/function/bika/bika.py @@ -100,6 +100,7 @@ def profile(token: string): profile_msg = '' profile_response = profile(current_token) + print(profile_response) if profile_response["code"] == "200": profile_result = profile_response["data"]["user"] profile_msg = ( diff --git a/function/bika/sendNotify.py b/function/bika/sendNotify.py index 5a78c71..428877a 100644 --- a/function/bika/sendNotify.py +++ b/function/bika/sendNotify.py @@ -321,7 +321,6 @@ def go_cqhttp(self, title, content): url = f'{sendNotify.GOBOT_URL}?access_token={sendNotify.GOBOT_TOKEN}&group_id={sendNotify.GOBOT_QQ}&message=标题:{title}\n内容:{content}' else: url = f'{sendNotify.GOBOT_URL}?access_token={sendNotify.GOBOT_TOKEN}&user_id={sendNotify.GOBOT_QQ}&message=标题:{title}\n内容:{content}' - print(url) try: response = requests.get(url, timeout=15) try: