《vbot微信機(jī)器人微信聊天消息詳解(14):公眾號(hào)消息》要點(diǎn):
本文介紹了vbot微信機(jī)器人微信聊天消息詳解(14):公眾號(hào)消息,希望對(duì)您有用。如果有疑問,可以聯(lián)系我們。
相關(guān)主題:web微信和微信機(jī)器人
接收到微信的公眾號(hào)圖文消息,vbot就會(huì)保存official類消息。
official
參數(shù) | 類型 | 描述 |
---|---|---|
title | string | 標(biāo)題 |
description | string | 描述 |
app | string | 公眾號(hào)來源名稱 |
url | string | 鏈接 |
articles | array | 公眾號(hào)文章列表 [[‘title’ => ‘標(biāo)題’, ‘url’ => ‘鏈接’, ‘cover’ => ‘封面URL’], […]] |
例子:
$vbot->messageHandler->setHandler(function(Collection $message){ // ... if ($message['type'] === 'official') { Text::send($message['from']['UserName'], '收到公眾號(hào):'.$message['title'].$message['description'].$message['app'].$message['url']); } });
轉(zhuǎn)載請(qǐng)注明本頁網(wǎng)址:
http://www.fzlkiss.com/jiaocheng/14515.html