zdz / yunxin-php
此包已被弃用且不再维护。未建议替代包。
网易云信的PHP SDK
1.0.6
2019-12-27 08:53 UTC
Requires
- ext-json: *
- guzzlehttp/guzzle: ^6.3
README
安装
建议使用composer:composer require zdz/yunxin-php
使用
创建实例
$appKey = '****'; // 网易云信分配的账号
$appSecret = '****'; // 网易云信分配的密钥
$entrance = new \YunXin\Entrance($appKey, $appSecret);
消息功能
#
# 文本消息
$entrance->chat()->sendTextMsg($from, $to, $ope, $text, $notReuireParams);
# 图片消息 会根据url获取图片的参数,也可以自定义参数
$entrance->chat()->sendPictureMsg($from, $to, $ope, $url, $notReuireParams);