From 47dcc2e045c2c200237c131b257265c34062936e Mon Sep 17 00:00:00 2001 From: mokurin000 <1348292515a@gmail.com> Date: Wed, 30 Jul 2025 01:54:02 +0800 Subject: [PATCH] chore: ping api call --- GetPreview.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/GetPreview.py b/GetPreview.py index 6bf5230..f6a908a 100644 --- a/GetPreview.py +++ b/GetPreview.py @@ -3,12 +3,11 @@ import rapidjson as json from API_TitleServer import apiSDGB -from MyConfig import testUid8 - def apiGetUserPreview(userId, noLog: bool = False) -> str: data = json.dumps({"userId": int(userId)}) preview_result = apiSDGB(data, "GetUserPreviewApi", userId, noLog) + print(apiSDGB("{}", "Ping", userId, noLog)) return preview_result