gulltour/rongcloud

Yii2 extension for RongCloud Im library

Installs: 67

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:yii2-extension

1.0.2 2017-06-01 03:14 UTC

This package is not auto-updated.

Last update: 2024-05-07 23:56:21 UTC


README

融云是国内首家专业的即时通讯云服务提供商,专注为互联网、移动互联网开发者提供免费的即时通讯基础能力和云端服务。通过融云平台,开发者不必搭建服务端硬件环境,就可以将即时通讯、实时网络能力快速集成至应用中。
   
针对开发者所需的不同场景,融云平台提供了一系列产品、技术解决方案,包括:客户端 IM 界面组件、客户端 IM 基础通讯能力库、Web IM 基础通讯能力库、服务端 REST API 等。支持单聊、群聊、讨论组、聊天室、客服即时通讯场景;
   
消息类型上支持文字、表情、图片、语音、视频、地理位置、红包、实时音视频、通知消息等消息类型。如果这些类型都不能满足,您还可以通过自定义消息来实现个性化需求。

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist gulltour/rongcloud "*"

or add

"gulltour/rongcloud": "*"

to the require section of your composer.json file.

Usage

Update config file config/web.php or common/main.php:

return [
    ...
    'components' => [
        'im'=>[
                'class'=>'gulltour\rongcloud\rongCloud',
                'appKey' => 'RongCloud_APP_KEY',
                'secretKey' => 'RongCloud_SECRET_KEY',
            ],
    ],
    ...
];
Yii::$app->im->groupCreate($userids, $groupId, $groupName);