hello its very urgent i just post some questions before 5 day but there is no solutions please help as soon as possible
my code is
|
public void startInstantMeeting() {
ZoomSDK zoomSDK = ZoomSDK.getInstance();
if (!zoomSDK.isInitialized()) {
Toast.makeText(this, "ZoomSDK has not been initialized successfully", Toast.LENGTH\_LONG).show();
return;
}
MeetingService meetingService = zoomSDK.getMeetingService();
InstantMeetingOptions instantMeetingOptions = new InstantMeetingOptions();
MeetingOptions opts = new MeetingOptions();
// // opts.no\_driving\_mode = true;
// //opts.no\_meeting\_end\_message = true;
// //opts.no\_titlebar = true;
// //opts.no\_bottom\_toolbar = true;
// //opts.no\_invite = true;
meetingService.startInstantMeeting(this,Keys.APP\_KEY, Keys.APP\_SECRET,MeetingService.USER\_TYPE\_ZOOM,"parvez",opts);
// int ret = meetingService.startInstantMeeting
// (this, Keys.USER\_ID, Keys.ZOOM\_TOKEN, MeetingService.USER\_TYPE\_SSO, "DisplayName", instantMeetingOptions);
// Log.i("instantMeeting", String.valueOf(ret));
}
|
| |