多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## 获取三方配置 **简要描述:** * 获取三方配置 **请求URL:** * /mini/third_options/find **请求方式:** * POST **参数:** | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | | | | | 无 | **返回参数:** | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | | appid | 是 | string | APPID | | appsecret | 是 | string | APPsecret | | token | 是 | string | 消息验证token | | aeskey | 是 | string | 消息加解密Key | | develop_appid | 是 | string | 开发小程序AppID | | auth_url | 是 | string | 授权事件接收URL | | message_url | 是 | string | 消息与事件接收URL | | white_ip | 是 | string| 白名单IP地址 | **返回示例** ~~~ { "code": "200", "msg": "success", "data": { "token": "NjHdvjKIBdpedxCMZWLbGMuqqkEYRMSj", "aeskey": "etjlcYT43hebTGVdGnsRwlD7UcYo1w8T9gmtU3qNybi", "develop_appid": "wx270bf25b37c06dfe", "appid": "wx0ffcf28e66de11b1", "appsecret": "e530b015f1d75b114a18ee6db7b4d210", "auth_url": "https://edu2.d8y.cn/mini/suite_third/urlCallback", "message_url": "https://edu2.d8y.cn/mini/suite_third/messageCallback?appid=/$APPID$", "white_ip": "144.255.100.115" } } ~~~