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

Starting the Client

Description

Users can click this link to start the Huawei Cloud Meeting client. The login screen is displayed after the client is started.

If the Huawei Cloud Meeting client has been started, the home screen will be displayed when a user clicks the link.

Code Sample (C++)

1
2
3
4
5
6
7
// Start the client.
void Cscheme_demoDlg::OnBnClickedButtonLaunch()
{
    // Assemble and execute the scheme.
    HWND hwnd=AfxGetApp()->GetMainWnd()->GetSafeHwnd();
    ShellExecute(hwnd,_T("open"),_T("cloudlink://welinksoftclient/h5page?page=launch"),NULL,NULL,SW_SHOWNORMAL);
}
  1. The preceding code is only a logical sample and cannot be directly used.
  2. To start the Huawei Cloud Meeting client from a web page, use href=cloudlink://welinksoftclient/h5page?page=launch for redirection.