## 获取配置
**简要描述:**
* 获取配置
* 只展示最后添加的配置
**请求URL:**
* /wechat/options/findPage
**请求方式:**
* POST
**请求参数**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
**返回参数**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| id| 是 | int| id |
| wx_token| 是 | string| 微信配置token |
| appid| 是 | string| appid |
| appsecret| 是 | string| appsecret |
| enaeskey| 是 | string| enaeskey|
| add_time| 是 | string| 创建时间|
| ip| 是 | string| 服务器授权IP|
| pushApiUrl| 是 | string| 消息推送地址|
**返回示例**
~~~
{
"code": "200",
"msg": "success",
"data": {
"id": "4",
"wx_token": "faas1111111111111111111111111111",
"appid": "wxca0290098b34da4b",
"appsecret": "1aec6fcb0fd366d0c9808ce37a06e28e",
"enaeskey": "ZcM522Vqm2sf5L0LwEV2mk8p800CbkSvc2qV8BvlWBM",
"add_time": "2020-08-26 16:17:13",
"ip": "127.0.0.1",
"pushApiUrl": "http://www.localwechat.com/wechat/client"
}
}
~~~