ltaooo/feishu

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

Maintainers

Details

github.com/LTaooo/feishu

Source

Issues

Installs: 39

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/ltaooo/feishu

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

This package is auto-updated.

Last update: 2025-09-29 03:14:43 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