go_echo/README.md

43 lines
719 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 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/"
}
]
}
}
```