//创建群聊 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; }
2022-04-14 11:18:05 21KB 即时通讯 php Tp 腾讯IM
1
之前研究开发的IM Delphi源码,功能基本上已经实现,对于学习即时通讯的朋友来说很值得借鉴。
2022-01-08 03:36:14 85.61MB IM
1
腾讯im对接简易封装腾讯im对接简易封装腾讯im对接简易封装腾讯im对接简易封装腾讯im对接简易封装
2021-09-15 20:03:00 6KB im
1
因公司业务需要,对接腾讯IM, 功能包含帐号导入帐号,发单聊消息之前回调,发单聊消息之后回调 ,单发单聊消息
2021-03-02 13:54:44 6KB 腾讯云 im
1
java服务端集成腾讯IM生成usersig所需要的工具和jar包。
2019-12-21 19:35:25 15.54MB java 腾讯IM
1
腾讯IM集成DEMO 优化,便于集成开发,在项目中使用相当的方便。
2019-12-21 18:56:04 73.09MB iOS TIM Demo,iOS 腾讯IM
1