21 lines
526 B
Markdown
Executable File
21 lines
526 B
Markdown
Executable File
### 获取请求
|
|
|
|
```shell
|
|
curl --request POST \
|
|
--url http://127.0.0.1:10001/api/v1/base/CallUserNp \
|
|
--header 'content-type: application/json' \
|
|
--data '{
|
|
"EnCodeStr": "https://mtovnd7gjf.gcweqo.cn/api/v1/app/config"
|
|
}
|
|
'
|
|
```
|
|
|
|
### 解密响应
|
|
|
|
```shell
|
|
curl --request POST \
|
|
--url http://127.0.0.1:10001/api/v1/base/CallUserPb \
|
|
--header 'content-type: application/json' \
|
|
--data '{"DeCodeStr":"aZmR9OYLTBJiHscJmoiPSeMwPOMZ2S7w7CPL9I15W6W1BA3U0uHXfewX6B8Kh4nK4KIY6pD5iqfvVwMb1teFK74pGh6NGmE6NiZNQSzoWbQ"}'
|
|
|
|
``` |