Not able to join as a host in iOS

I am not able to join as a host user. It shows me always a guest user. I am using following code to join meeting:

MobileRTCMeetingStartParam * param = nil;
MobileRTCMeetingStartParam4WithoutLoginUser * user = [[[MobileRTCMeetingStartParam4WithoutLoginUser alloc]init] autorelease];
user.userType = MobileRTCUserType_APIUser;
user.meetingNumber = myMeetingId;
user.userName = myUsername;
user.userID = myEmail;
user.isAppShare = NO;
user.zak = myZAK;
param = user;
MobileRTCMeetError ret = [ms startMeetingWithStartParam:param];

If i am doing something wrong please suggest. I also try following code to join also:

MobileRTCMeetingJoinParam * joinParam = [[[MobileRTCMeetingJoinParam alloc]init]autorelease];
joinParam.meetingNumber = myMeetingId;
joinParam.password = myPassword;
joinParam.zak = myZAK;
MobileRTCMeetError ret = [ms joinMeetingWithJoinParam:joinParam];

NOTE: In userId i am using the user email and in userName the name of user.

Hey @yadav.rajat

Thanks for using the dev forum!

Can you check out this thread and see if you are still seeing the same issue?

Thanks!
Michael

Thanks. I am now able to join.

1 Like

@yadav.rajat

Awesome! I am glad it is working!

Let us know if you have any other questions
Michael