使用 Zoom SDK 的 onMeetingLeaveComplete 回调函数,获取到当前 meetingId,并通过调用 Zoom API 获取用户参加会议时的信息,包括 callerid。
代码示例:
@Override public void onMeetingLeaveComplete(long l) { String uuid = ZoomSDK.getInstance().getInMeetingService().getCurrentMeetingID(); ZoomApi api = new ZoomApi(context); String callerId = api.getMeetingCallerId(uuid); }
其中,uuid 为 meetingId,callerId 为调用 Zoom API 获取的参会用户信息。需要在调用 Zoom SDK 的 onStart() 和 onStop() 函数中注册和注销此回调函数。