Description
I am attempting to have the demo application join to a meeting that is setup with a password/passcode and I am having troubles joining. Please advise.
Which version?
Zoom Windows SDK C# Wrapper v5.0.24433.0616
To Reproduce(If applicable)
Steps to reproduce the behavior:
- Start a Zoom meeting: for instance,
https://<my_domain>.zoom.us/j/<my_meeting_number>?pwd=<my_meeting_password>
- Run the C# wrapper demo app
- Enter user name, meeting number, and meeting passcode (or password?? Or what else??)
- According to the
onMeetingStatusChanged
callback, the app attempts to join the meeting, but immediately disconnects, then gives a status of ERROR.
Additional context
I canāt get the app to join the meeting. I feel like it has something to do with the password/passcode that I am providing. I say that b/c I am able to join a meeting that has no password/passcode setup for it - meaning, I simply enter my user name and meeting number and it joins successfully. So my guess is that it is related to me doing something wrong with the join params. I have tried it with the password provided in the URL and with the meeting passcode. Neither of those worked.
Here is my code:
RegisterCallBack();
JoinParam param = new JoinParam();
param.userType = SDKUserType.SDK_UT_WITHOUT_LOGIN;
JoinParam4WithoutLogin join_api_param = new JoinParam4WithoutLogin();
join_api_param.meetingNumber = // <my_meeting_number> (from Zoom URL)
join_api_param.userName = // <First Last>
join_api_param.psw = // What goes here exactly??? The password in the URL or something else???
param.withoutloginJoin = join_api_param;
SDKError err = CZoomSDKeDotNetWrap.Instance.GetMeetingServiceWrap().Join(param);
if (SDKError.SDKERR_SUCCESS == err)
{
Hide();
}