Login user zoomSDK.loginWithZoom

Description
I am using zoomsdk to login the user after validating the user.User is getting successfully logged in but i am not getting any user object or any user details from sdk.

I need code for creating a meeting with password and invite others to join the meeting.

Which version?
4.4.57220.1211

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Go to ‘…’
  2. Click on ‘…’
  3. Scroll down to ‘…’
  4. See error

Screenshots
If applicable, add screenshots to help explain your problem.

Smartphone (please complete the following information):

  • Device: [e.g. moto onepower]
  • OS: [e.g. aindroid 10]
  • Version [e.g. 21]

Additional context
Add any other context about the problem here.

Hi sandeep.k,

Thanks for the post. To get user info, you may leverage the interfaces in InMeetingUserInfo(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/InMeetingUserInfo.html) to get the user’s information.

To schedule a meeting with password, you may use the interfaces in PreMeetingService(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/PreMeetingService.html) to schedule a meeting, or you could use the Rest API to schedule a meeting:https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate

Hope this helps. Thanks!

Hello Carson,

when i login with username and password after successful login i need logged in userinfo(Name,id…etc).

Hi sandeep.k,

Thanks for the reply. Yes, understand. The direct callback after the user has successfully logged in does not provide the user info. You need to use the interfaces I mentioned above to get the user’s info after logged-in.

Hope this helps. Thanks!