Xcode when start meeting get error InvalidArguments

Using xcode to run DEMO sdk(zoom-sdk-ios-5.9.1.2191)
After logining in ZOOM successfuly,We run the the following code as below

MobileRTCMeetingStartParam * param = nil;
MobileRTCMeetingStartParam4LoginlUser * user = [[MobileRTCMeetingStartParam4LoginlUser alloc] init];
param = user;
param.meetingNumber = kSDKMeetNumber; // if kSDKMeetNumber is empty, it‘s a instant meeting.
param.isAppShare = false;

Then got the error 150

Hi @greenplanet123, thanks for using the dev forum.

When you are trying to start a meeting, the SDK expects that you have successfully authenticated the end user who owns that meeting. This usually means that you have successfully completed OAuth and retrieved the user’s ZAK as outlined here.

If you are just trying to join a meeting without user authentication, you can do so through the joinMeetingWithJoinParam method.

Thanks!

Thanks Jon!But can’t open the hyperlink “outlined here”

Hi @greenplanet123,

Apologies, the markdown somehow ended up nesting two links which broke the actual link. It should be working correctly now. :slightly_smiling_face:

Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.