//创建群聊
public function startLive()
{
$store_user_id = 111;
// 创建直播间
//创建 Im群聊
$tenIm = new TenImService();
$params = [
"Owner_Account" => '',
"Type" => "AVChatRoom",
"Name" => "room_" . $store_user_id,//群名字
"GroupId" => "room_" . $store_user_id, // 用户自定义群组 ID(选填)
];
$serverName = 'group_open_http_svc';
$command = 'create_group';
$Imdata = $tenIm->group($params, $serverName, $command);
return $Imdata;
}
//解散群
public function endLive()
{
$store_user_id = 111;
//解散群
$params = [
"GroupId" => "room_" . $store_user_id
];
$serverName = 'group_open_http_svc';
$command = 'destroy_group';
$tenIm = new TenImService();
$Imdata = $tenIm->group($params, $serverName, $command);
return $Imdata;
}
1