🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 获取公众号短信数据 ### URL >/web/index.php?c=account&a=post&do=sms ### 请求方式 GET ### 请求参数 | 名称 | 类型 | 必填 | 描述 | | ----------- | :-----: | :-----: | ----------- | | uniacid | int | 是 | 平台uniacid || ### 返回数据 ``` { "message": { "errno": 0, "message": { "balance": 100, //短信剩余条数 "signature": "涛盛系统团队", //短信签名 "sms_signs": [ //可设置的签名 "签名测试", "涛盛系统团队" ] } }, "redirect": "", "type": "ajax" } ``` ## 修改公众号短信条数 ### URL > /web/index.php?c=account&a=post&do=sms ### 请求方式 POST ### 请求参数 | 名称 | 类型 | 必填 | 描述 | | ----------- | :-----: | :-----: | ----------- | | uniacid | int | 是 | 平台uniacid | | type | string | 是 | 修改项,值为 balance 或 signature | | balance | int | 否 | 剩余条数,type 为 balance 时须传此参数 | | signature | string | 否 | 签名,type 为 signature 时须传此参数, 值为获取到sms_signs中的值 | ### 返回数据 balance修改成功: ``` { "message": { "errno": 0, "message": { "num": 12//剩余条数 } }, "redirect": "", "type": "ajax" } ``` signature修改成功: ``` { "message": { "errno": 0, "message": "修改成功!" }, "redirect": "", "type": "ajax" } ``` 失败: ``` { "message": { "errno": -1, "message": "您现有短信数量为0,请联系服务商购买短信!" }, "redirect": "", "type": "ajax" } ```