Files
2026-05-11 17:49:38 +08:00

33 lines
891 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
require_once __DIR__ . '/../../autoload.php';
use Qiniu\Auth;
use Qiniu\Rtc\AppClient;
// 控制台获取密钥:https://portal.qiniu.com/user/key
$accessKey = getenv('QINIU_ACCESS_KEY');
$secretKey = getenv('QINIU_SECRET_KEY');
$auth = new Auth($accessKey, $secretKey);
$client = new AppClient($auth);
// 绑定的直播hub,使用此hub的资源进行推流等业务功能,hub与app必须属于同一个七牛账户
$hub = 'rtchub';
// app 的名称,注意:Title 不是唯一标识,重复 create 动作将生成多个 app
$title = 'rtc';
// 连麦房间支持的最大在线人数
$maxUsers = 20;
// 创建应用
// 参考文档:https://doc.qnsdk.com/rtn/docs/server_overview#2_1
list($ret, $err) = $client->createApp($hub, $title, $maxUsers);
if ($err !== null) {
var_dump($err);
} else {
echo "\n====> Create Successfully \n";
var_dump($ret);
}