Meeting SDK Type and Version
SDK Type: Zoom Meeting SDK for Android
Version: zoom-sdk-android-6.4.3.28970
Description:
I’m working with the Zoom Meeting SDK for Android and attempting to retrieve participant information during an active meeting using the following code:
InMeetingUserInfo userInfo = ZoomSDK.getInstance()
.getInMeetingService()
.getUserInfoById(userId);
However, userInfo
consistently returns null
despite the userId
being valid.
Error / Issue:
There is no crash or explicit error message, but the getUserInfoById()
method returns null
even when the user is clearly present in the meeting.
Troubleshooting Routes:
- Verified that the
userId
is obtained from the active user list provided bygetInMeetingUserList()
. - Ensured that the user is currently in the meeting when the method is called.
- Confirmed that the issue persists even after adding delays or checking from various meeting states (e.g.,
MEETING_STATUS_INMEETING
).