|
|
@@ -18,7 +18,11 @@ class ChatBaseApply(ChatBase):
|
|
|
|
|
|
async def chat_ping(self, url, params, headers):
|
|
|
res = await self.http_get(url, params, headers)
|
|
|
- return res.status_code
|
|
|
+ if res.status_code != 200:
|
|
|
+ return 0
|
|
|
+ if res.json().get("code") == "unauthorized" or res.json().get("code") == 401:
|
|
|
+ return 0
|
|
|
+ return 200
|
|
|
|
|
|
|
|
|
async def chat_post(self, url, data, headers):
|
|
|
@@ -78,9 +82,11 @@ if __name__ == "__main__":
|
|
|
# ans = await chat.chat_parameters(url, params, headers)
|
|
|
# print(ans)
|
|
|
|
|
|
- ping_url = "http://192.168.20.119:13002/console/api/workspaces"
|
|
|
- user_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNzBhNWVhZWYtYzU4Yi00YTE0LTliOGQtYWE2MzY0ZmE1ZDE3IiwiZXhwIjoxNzM5MjU2MDMyLCJpc3MiOiJTRUxGX0hPU1RFRCIsInN1YiI6IkNvbnNvbGUgQVBJIFBhc3Nwb3J0In0.tlxdRIVL2Ewgb0V4M5pj6v_U2yyvQxtCDrbvSxLjUBs"
|
|
|
- token = "Bearer {}"
|
|
|
+ ping_url = "http://192.168.20.116:11080/v1/system/version"
|
|
|
+ # ping_url = "http://192.168.20.119:13002/console/api/workspaces"
|
|
|
+ user_token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiNjEzNzdiYzctZTViYy00YjhiLTgxYTYtNWZkOTVhODVlMmE4IiwiZXhwIjoxNzM5MjU3Njk1LCJpc3MiOiJTRUxGX0hPU1RFRCIsInN1YiI6IkNvbnNvbGUgQVBJIFBhc3Nwb3J0In0.w7xQrepd1dYR4iPXcbuthIZjdm45bTJFbolOM_SE9aQ"
|
|
|
+ # token = "Bearer {}"
|
|
|
+ token = "{}"
|
|
|
res = await chat.chat_ping(ping_url, {}, await chat.get_chat_headers(token.format(user_token)))
|
|
|
print(res)
|
|
|
|