🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 获取微信开放平台数据 ### URL >/web/index.php?c=system&a=platform ### 请求方式 GET ### 请求参数 无 ### 返回数据 ``` { "message": { "errno": 0, "message": { "platform": { "token": "irc5qrvvavhivndf53yklnm0x0ez0g5u", //公众号消息校验Token "encodingaeskey": "TxAlFgHahh9hLpsGmhphqFQST9og9NgLYr9PgRgb9E9", //公众号消息加解密Key "appid": "wx02205dd3807c8bd7", //AppID "appsecret": "33b7db068e0cda8d5d3d45203d20b458", //AppSecret "authstate": 1 //是否启用微信公众号登录授权: 1是,0否 }, "siteroot": "http://prox.we7.com/", "siteroot": { "scheme": "http", "host": "prox.we7.com", "path": "/" }, "authurl": "", //微信公众号登录授权按钮跳转链接 "authurl_error": "access clientip is not registered hint: [jIeHma0106b101] requestIP: 171.118.63.0" //获取跳转链接失败的提示 } }, "redirect": "", "type": "ajax" } ``` ## 编辑微信开放平台数据 ### URL >/web/index.php?c=system&a=platform ### 请求方式 POST ### 请求参数 | 名称 | 类型 | 必填 | 描述 | | ----------- | :-----: | :-----: | ----------- | | authstate | int | 否 | 是否启用微信公众号登录授权: 1是,0否 | | appid | string | 否 | AppID | | appsecret | string | 否 | AppSecret | | token | string | 否 | 公众号消息校验Token | | encodingaeskey | string | 否 | 公众号消息加解密Key | 请求时只post需要修改的字段即可 ### 返回数据 成功: ``` { "message": { "errno": 0, "message": "修改成功!" }, "redirect": "", "type": "ajax" } ``` 失败: ``` { "message": { "errno": 1, "message": "修改失败!" }, "redirect": "", "type": "ajax" } ```