评论数据管理
打开已群发文章评论
$officialAccount->comment->open(string $msgId, int $index = null);
关闭已群发文章评论
$officialAccount->comment->close(string $msgId, int $index = null);
查看指定文章的评论数据
$officialAccount->comment->list(string $msgId, int $index, int $begin, int $count, int $type = 0);
将评论标记精选
$officialAccount->comment->markElect(string $msgId, int $index, int $commentId);
将评论取消精选
$officialAccount->comment->unmarkElect(string $msgId, int $index, int $commentId);
删除评论
$officialAccount->comment->delete(string $msgId, int $index, int $commentId);
回复评论
$officialAccount->comment->reply(string $msgId, int $index, int $commentId, string $content);
删除回复
$officialAccount->comment->deleteReply(string $msgId, int $index, int $commentId);