多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### **接受视频呼叫** int acceptVideoCall(int userId) #### 接口说明: 接受呼叫请求,双方将会收到视频通话开始通知(AnyChatVideoCallEvent事件中的onReceiveVideoCallStart回调通知) #### 返回值: 0—成功 其他错误代码 #### 接口参数简介: | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | userId| int| 呼叫方用户ID | 是 | #### 示例代码: ``` // anychatSDK is a instance of sdk int status = anychatSDK.acceptVideoCall(userId);//接受呼叫 ```