微擎发送图文消息

微擎发送图文消息

 

$custom = array(
                'touser' => 'oXo3is-YksITdG35n4tTKBKog7ak',
                'msgtype' => 'news',
            );
            $custom['news']['articles'] = array(
                    // 注意这里的article这里是二维数组
                    // 不然会报44003 图文为空
                    array(
                      'title' => urlencode($activity['title']),
                      'description' => urlencode($activity['description']),
                      'url' => tomedia($this->createMobileUrl($filename, array('op' => 'detail'))),
                      'picurl' => tomedia($_W['attachurl'] . $activity['picurl'])
                )
            );
            $account_api = WeAccount::create();
            $result = $account_api->sendCustomNotice($custom);

 

posted @ 2019-11-04 16:51  GetcharZp  阅读(387)  评论(0编辑  收藏  举报