Updated on 2024-08-16 GMT+08:00

Joining a Meeting via 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 using parameters passed when the user touches a link.

Service Process

When the user touches the link, the app home screen is displayed. If the user has logged in, the user joins the meeting with the account name. Or, the user joins the meeting anonymously.

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);