diff --git a/application/wechat/controller/api/Push.php b/application/wechat/controller/api/Push.php index 748b51095..5185cfff8 100644 --- a/application/wechat/controller/api/Push.php +++ b/application/wechat/controller/api/Push.php @@ -264,7 +264,11 @@ class Push case 'music': return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true); case 'news': - return $wechat->news($data['articles'])->reply([], true); + $articles = []; + foreach ($data['articles'] as $article) { + $articles[] = ['Url' => $article['url'], 'Title' => $article['title'], 'PicUrl' => $article['picurl'], 'Description' => $article['description']]; + } + return $wechat->news($articles)->reply([], true); case 'customservice': WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]); return $wechat->transferCustomerService()->reply([], true);