💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### **客户呼叫** int requestVideoCall(int userId) #### 接口说明: 呼叫指定用户,被呼叫方会接受到接收视频呼叫请求通知(AnyChatVideoCallEvent事件中的onReceiveVideoCallRequest回调通知) #### 返回值: 0—成功 其他错误代码 #### 接口参数简介: | 名称 | 类型 | 说明 | 是否必须 | | --- | --- | --- | --- | | userId| int| 被呼叫方用户ID | 是 | #### 示例代码: ``` // anychatSDK is the instance of sdk int status = anychatSDK.requestVideoCall(userId);//发起呼叫 ```