Updated on 2022-07-19 GMT+08:00

Joining a Meeting by Clicking a Link

Description

If the Huawei Cloud Meeting app is installed on a user device, the user can start the app and join a meeting based on the passed parameters by clicking a link provided by a third-party app.

Service Process

If users have not logged in when they click the link, the home screen is displayed and they join the meeting anonymously. If users have logged in when they click the link, the home screen is displayed and they join the meeting using their account names.

Code Sample

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
               Uri.Builder builder = new Uri.Builder()
                        .scheme("cloudlink")
                        .authority("welinksoftclient")
                        .path("h5page")
                        .appendQueryParameter("page","joinConfByLink")
                        .appendQueryParameter("server_url",serverAddress)
                        .appendQueryParameter("port",portString)
                        .appendQueryParameter("conf_id",confId)
                        .appendQueryParameter("enter_code",enterCode)
                        .appendQueryParameter("name",name)
                        .appendQueryParameter("open_mic",String.valueOf(openMic))
                        .appendQueryParameter("open_camera",String.valueOf(openCamera));
                    Intent intent = new Intent();
					intent.setData(Uri.parse(url));
					startActivity(intent);