51 lines
1.0 KiB
Markdown
51 lines
1.0 KiB
Markdown
<!--
|
|
* @Author: giaogiao giaogiao
|
|
* @Date: 2023-08-07 11:55:31
|
|
* @LastEditors: giaogiao giaogiao
|
|
* @LastEditTime: 2023-08-07 12:02:26
|
|
* @FilePath: \go_echo\README.md
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
## API URL
|
|
```
|
|
http://127.0.0.1:1323/textserver
|
|
```
|
|
## RequestData
|
|
```
|
|
{
|
|
"Urls": [{
|
|
"url": "https://www.github.com/"
|
|
}, {
|
|
"url": "http://127.0.0.1"
|
|
}, {
|
|
"url": "https://www.github.com/"
|
|
}]
|
|
}
|
|
```
|
|
|
|
## ReturnData
|
|
```
|
|
{
|
|
"code": 200,
|
|
"message": "",
|
|
"data": {
|
|
"items": [
|
|
{
|
|
"code": 200,
|
|
"time": 36,
|
|
"url": "http://127.0.0.1"
|
|
},
|
|
{
|
|
"code": 200,
|
|
"time": 991,
|
|
"url": "https://www.github.com/"
|
|
},
|
|
{
|
|
"code": 200,
|
|
"time": 994,
|
|
"url": "https://www.github.com/"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
``` |