Create Start Instant Meeting Nothing Happend

Description
I follow this link (Zoom Android SDK) to implement start instant meetings, then run but nothing happend, only show this in Run status android studio:

I/MeetingServiceImpl: startMeeting: sUri=zoomus://zoom.us/start?&custom_meeting_id=abc&no_invite=1&no_dial_in_via_phone=1&no_dial_out_to_phone=1&no_share=1&show_water_mark=1&meeting_views_options=4&invite_options=255&zc=0
I/Timeline: Timeline: Activity_launch_request time:16811322 intent:Intent { act=android.intent.action.VIEW cat=[android.intent.category.BROWSABLE] dat=zoomus://zoom.us/start?&custom_meeting_id=abc&no_invite=1&no_dial_in_via_phone=1&no_dial_out_to_phone=1&no_share=1&show_water_mark=1&meeting_views_options=4&invite_options=255&zc=0 flg=0x10000000 cmp=com.derucode.zoomexample/com.zipow.videobox.JoinByURLActivity }

Which version?
Version: 4.3.47200.0322

Screenshots

Hi shezars

Please confirm if you are using a custom UI?

ZoomSDK.getInstance().getMeetingSettingsHelper().isCustomizedMeetingUIEnabled()

Is it possible to reproduce every time?

Can you provide more logs?

how to enable log:
1 ZoomSDK.initialize(Context context, String appKey, String appSecret, String domain, ZoomSDKInitializeListener listener, boolean enableLog)
enableLog : true

2 the SDK log path :/sdcard/Android/data/packageName/logs/

I solve it, thanks anyway, my mistakes not implement the third step (3. Login User), is it possible i create / start meeting without login user?

thank you

Hi shezars,

Thanks for using Zoom SDK. Glad to hear the problem is resolved. For non-login users, you can join a meeting or start a pre-scheduled meeting(https://marketplace.zoom.us/docs/sdk/native-sdks/android/mastering-zoom-sdk/start-join-meeting/api-user/start-meeting), unfortunately, start an instant meeting feature is not available for non-login users.

Let me know if you have any other questions. Thanks!

Yes thank you for supporting, i see, then can i return the participant id when instant meeting is started? What listener that i used to return the participant id (meeting id) when instant meeting is started, (*because it’s random number right), or can i make meeting id/number permanent like using Personal Meeting ID ?

InMeetingService getCurrentMeetingID will return the current meeting number.