mirror of
https://github.com/LLM-Red-Team/glm-free-api.git
synced 2024-11-11 04:49:25 +08:00
增加refresh_token存活检测
This commit is contained in:
parent
83a8c00edd
commit
f01006c4f1
37
README.md
37
README.md
@ -43,6 +43,7 @@ Moonshot AI(Kimi.ai)接口转API [kimi-free-api](https://github.com/LLM-Red-
|
||||
* [AI绘图](#AI绘图)
|
||||
* [文档解读](#文档解读)
|
||||
* [图像解析](#图像解析)
|
||||
* [refresh_token存活检测](#refresh_token存活检测)
|
||||
* [注意事项](#注意事项)
|
||||
* [Nginx反代优化](#Nginx反代优化)
|
||||
|
||||
@ -62,37 +63,37 @@ https://udify.app/chat/Pe89TtaX3rKXM8NS
|
||||
|
||||
## 效果示例
|
||||
|
||||
### 验明正身
|
||||
### 验明正身Demo
|
||||
|
||||
![验明正身](./doc/example-1.png)
|
||||
|
||||
### 智能体对话
|
||||
### 智能体对话Demo
|
||||
|
||||
对应智能体链接:[网抑云评论生成器](https://chatglm.cn/main/gdetail/65c046a531d3fcb034918abe)
|
||||
|
||||
![智能体对话](./doc/example-9.png)
|
||||
|
||||
### 多轮对话
|
||||
### 多轮对话Demo
|
||||
|
||||
![多轮对话](./doc/example-6.png)
|
||||
|
||||
### AI绘图
|
||||
### AI绘图Demo
|
||||
|
||||
![AI绘图](./doc/example-10.png)
|
||||
|
||||
### 联网搜索
|
||||
### 联网搜索Demo
|
||||
|
||||
![联网搜索](./doc/example-2.png)
|
||||
|
||||
### 长文档解读
|
||||
### 长文档解读Demo
|
||||
|
||||
![长文档解读](./doc/example-5.png)
|
||||
|
||||
### 代码调用
|
||||
### 代码调用Demo
|
||||
|
||||
![代码调用](./doc/example-12.png)
|
||||
|
||||
### 图像解析
|
||||
### 图像解析Demo
|
||||
|
||||
![图像解析](./doc/example-3.png)
|
||||
|
||||
@ -428,6 +429,26 @@ Authorization: Bearer [refresh_token]
|
||||
}
|
||||
```
|
||||
|
||||
### refresh_token存活检测
|
||||
|
||||
检测refresh_token是否存活,如果存活live未true,否则为false,请不要频繁(小于10分钟)调用此接口。
|
||||
|
||||
**POST /token/check**
|
||||
|
||||
请求数据:
|
||||
```json
|
||||
{
|
||||
"token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9..."
|
||||
}
|
||||
```
|
||||
|
||||
响应数据:
|
||||
```json
|
||||
{
|
||||
"live": true
|
||||
}
|
||||
```
|
||||
|
||||
## 注意事项
|
||||
|
||||
### Nginx反代优化
|
||||
|
@ -1118,9 +1118,39 @@ function generateCookie(refreshToken: string, token: string) {
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取Token存活状态
|
||||
*/
|
||||
async function getTokenLiveStatus(refreshToken: string) {
|
||||
const result = await axios.post(
|
||||
"https://chatglm.cn/chatglm/backend-api/v1/user/refresh",
|
||||
{},
|
||||
{
|
||||
headers: {
|
||||
Authorization: `Bearer ${refreshToken}`,
|
||||
Referer: "https://chatglm.cn/main/alltoolsdetail",
|
||||
"X-Device-Id": util.uuid(false),
|
||||
"X-Request-Id": util.uuid(false),
|
||||
...FAKE_HEADERS,
|
||||
},
|
||||
timeout: 15000,
|
||||
validateStatus: () => true,
|
||||
}
|
||||
);
|
||||
try {
|
||||
const { result: _result } = checkResult(result, refreshToken);
|
||||
const { accessToken } = _result;
|
||||
return !!accessToken;
|
||||
}
|
||||
catch(err) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
createCompletion,
|
||||
createCompletionStream,
|
||||
generateImages,
|
||||
getTokenLiveStatus,
|
||||
tokenSplit,
|
||||
};
|
||||
|
@ -4,6 +4,7 @@ import Response from '@/lib/response/Response.ts';
|
||||
import chat from "./chat.ts";
|
||||
import images from "./images.ts";
|
||||
import ping from "./ping.ts";
|
||||
import token from './token.js';
|
||||
|
||||
export default [
|
||||
{
|
||||
@ -21,5 +22,6 @@ export default [
|
||||
},
|
||||
chat,
|
||||
images,
|
||||
ping
|
||||
ping,
|
||||
token
|
||||
];
|
25
src/api/routes/token.ts
Normal file
25
src/api/routes/token.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import _ from 'lodash';
|
||||
|
||||
import Request from '@/lib/request/Request.ts';
|
||||
import Response from '@/lib/response/Response.ts';
|
||||
import chat from '@/api/controllers/chat.ts';
|
||||
import logger from '@/lib/logger.ts';
|
||||
|
||||
export default {
|
||||
|
||||
prefix: '/token',
|
||||
|
||||
post: {
|
||||
|
||||
'/check': async (request: Request) => {
|
||||
request
|
||||
.validate('body.token', _.isString)
|
||||
const live = await chat.getTokenLiveStatus(request.body.token);
|
||||
return {
|
||||
live
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user