[更新]修改微信图文回复处理

This commit is contained in:
Anyon 2018-06-22 11:49:56 +08:00
parent f1b019836f
commit 2725499262

View File

@ -264,7 +264,11 @@ class Push
case 'music': case 'music':
return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true); return $wechat->music($data['title'], $data['description'], $data['musicurl'], $data['hqmusicurl'], $data['thumb_media_id'])->reply([], true);
case 'news': 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': case 'customservice':
WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]); WechatService::WeChatCustom()->send(['touser' => $this->openid, 'msgtype' => 'text', "text" => $data['content']]);
return $wechat->transferCustomerService()->reply([], true); return $wechat->transferCustomerService()->reply([], true);