First commit
This commit is contained in:
71
app/Common/extend/qiniu/docs/rtc/README.md
Executable file
71
app/Common/extend/qiniu/docs/rtc/README.md
Executable file
@@ -0,0 +1,71 @@
|
||||
# Rtc Streaming Cloud Server-Side Library For PHP
|
||||
|
||||
## Features
|
||||
|
||||
- Appclient
|
||||
- [x] 创建房间: client->createApp()
|
||||
- [x] 查看房间: client->getApp()
|
||||
- [x] 删除房间: client->deleteApp()
|
||||
- [x] 生成房间token: client->appToken()
|
||||
|
||||
|
||||
|
||||
## Contents
|
||||
|
||||
- [Installation](#installation)
|
||||
- [Usage](#usage)
|
||||
- [Configuration](#configuration)
|
||||
- [App](#app)
|
||||
- [Create a app](#create-a-app)
|
||||
- [Get a app](#get-a-app)
|
||||
- [Delete a app](#delete-a-app)
|
||||
- [Generate a app token](#generate-a-app-token)
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
### App
|
||||
|
||||
#### Create a app
|
||||
|
||||
```php
|
||||
$ak = "gwd_gV4gPKZZsmEOvAuNU1AcumicmuHooTfu64q5";
|
||||
$sk = "xxxx";
|
||||
$auth = new Auth($ak, $sk);
|
||||
$client = new Qiniu\Rtc\AppClient($auth);
|
||||
$resp=$client->createApp("901","testApp");
|
||||
print_r($resp);
|
||||
```
|
||||
|
||||
#### Get an app
|
||||
|
||||
```php
|
||||
$ak = "gwd_gV4gPKZZsmEOvAuNU1AcumicmuHooTfu64q5";
|
||||
$sk = "xxxx";
|
||||
$auth = new Auth($ak, $sk);
|
||||
$client = new Qiniu\Rtc\AppClient($auth);
|
||||
$resp=$client->getApp("deq02uhb6");
|
||||
print_r($resp);
|
||||
```
|
||||
|
||||
#### Delete an app
|
||||
|
||||
```php
|
||||
$ak = "gwd_gV4gPKZZsmEOvAuNU1AcumicmuHooTfu64q5";
|
||||
$sk = "xxxx";
|
||||
$auth = new Auth($ak, $sk);
|
||||
$client = new Qiniu\Rtc\AppClient($auth);
|
||||
$resp=$client->deleteApp("deq02uhb6");
|
||||
print_r($resp);
|
||||
```
|
||||
|
||||
#### Generate an app token
|
||||
|
||||
```php
|
||||
$ak = "gwd_gV4gPKZZsmEOvAuNU1AcumicmuHooTfu64q5";
|
||||
$sk = "xxxx";
|
||||
$auth = new Auth($ak, $sk);
|
||||
$client = new Qiniu\Rtc\AppClient($auth);
|
||||
$resp=$client->appToken("deq02uhb6", "lfx", '1111', (time()+3600), 'user');
|
||||
print_r($resp);
|
||||
```
|
||||
42
app/Common/extend/qiniu/docs/rtc/example.php
Executable file
42
app/Common/extend/qiniu/docs/rtc/example.php
Executable file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
require_once("../../autoload.php");
|
||||
|
||||
use \Qiniu\Auth;
|
||||
|
||||
$ak = 'gwd_gV4gPKZZsmEOvAuNU1AcumicmuHooTfu64q5';
|
||||
$sk = 'xxxx';
|
||||
|
||||
$auth = new Auth($ak, $sk);
|
||||
$client = new Qiniu\Rtc\AppClient($auth);
|
||||
$hub = 'lfxlive';
|
||||
$title = 'lfxl';
|
||||
try {
|
||||
//创建app
|
||||
$resp = $client->createApp($hub, $title, $maxUsers);
|
||||
print_r($resp);
|
||||
// 获取app状态
|
||||
$resp = $client->getApp('dgdl5ge8y');
|
||||
print_r($resp);
|
||||
//修改app状态
|
||||
$mergePublishRtmp = null;
|
||||
$mergePublishRtmp['enable'] = true;
|
||||
$resp = $client->updateApp('dgdl5ge8y', $hub, $title, $maxUsers, $mergePublishRtmp);
|
||||
print_r($resp);
|
||||
//删除app
|
||||
$resp = $client->deleteApp('dgdl5ge8y');
|
||||
print_r($resp);
|
||||
//获取房间连麦的成员
|
||||
$resp=$client->listUser("dgbfvvzid", 'lfxl');
|
||||
print_r($resp);
|
||||
//剔除房间的连麦成员
|
||||
$resp=$client->kickUser("dgbfvvzid", 'lfx', "qiniu-f6e07b78-4dc8-45fb-a701-a9e158abb8e6");
|
||||
print_r($resp);
|
||||
// 列举房间
|
||||
$resp=$client->listActiveRooms("dgbfvvzid", 'lfx', null, null);
|
||||
print_r($resp);
|
||||
//鉴权的有效时间: 1个小时.
|
||||
$resp = $client->appToken("dgd4vecde", "lfxl", '1111', (time()+3600), 'user');
|
||||
print_r($resp);
|
||||
} catch (\Exception $e) {
|
||||
echo "Error:", $e, "\n";
|
||||
}
|
||||
Reference in New Issue
Block a user