zdz/yunxin-php

This package is abandoned and no longer maintained. No replacement package was suggested.

php sdk for NetEase YunXin

Installs: 5 285

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/zdz/yunxin-php

1.0.6 2019-12-27 08:53 UTC

This package is auto-updated.

Last update: 2023-11-27 17:34:36 UTC


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);