文档
测试

setAdminPage

POST
api.thinker2021.cn

请求参数

参数名
类型
描述
必填
_username
string
用户名
必填
_token
string
token密钥
必填
_usertype
string
用户类型
必填
_request
string
请求类型
必填

响应参数

参数名
类型
描述
必填
code
int
错误代码(0为成功,其他均为请求失败)
必填
info
string
错误信息
必填

说明 / 示例

# Request Example ```json data={ "_username":"null", "_token":"null", "_usertype":"null", "_request":"getBaseInfo" } ``` # Response Example * If the request is successful, you will get response like this: ```json { "code":0, "info":"Success!" } ``` * If your request is illegal, you will get response like this: ```json { "code":1, "info":"Illegal Request!" }