1234567891011121314151617181920212223242526272829 |
- <?php
- # 数据收集的配置
- return array
- (
- # 发送给群组
- 'send_all' => array
- (
- 'url' => 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?',
- 'param' => Dever::load('weixin/message.data'),
- 'json' => true,
- ),
-
- # 发送给个人
- 'send_openid' => array
- (
- 'url' => 'https://api.weixin.qq.com/cgi-bin/message/mass/send?',
- 'param' => Dever::load('weixin/message.data'),
- 'json' => true,
- ),
-
- # 客服消息
- 'send_custom' => array
- (
- 'url' => 'https://api.weixin.qq.com/cgi-bin/message/custom/send?',
- 'param' => Dever::load('weixin/message.data'),
- 'json' => true,
- ),
- );
|