ltaooo/feishu

There is no license information available for the latest version (v1.1.1) of this package.

v1.1.1 2024-07-30 05:46 UTC

This package is auto-updated.

Last update: 2024-10-30 07:01:15 UTC


README

Quick Start

    // 发送文本消息
    $param = new GroupRobotParam("https://open.feishu.cn/open-apis/bot/v2/hook/xxxx");
    $param->setSecret('sGV5kv5aZUTXmG3H00mGBf');
    $message = new TextMessage('hello sign label');
    $robot = new GroupRobot($param);
    $result = $robot->send($message);
    
    // 更多示例参考tests