Agora Go Real

{{ page_meta.name }}|{{ group.public_title }}|{{ site_settings.logo_alt }}

作成者: ブイキューブ|May 16, 2022 8:05:49 AM

 

想定されるUIと実装方法

想定UI

実装方法

具体的なAPIは以下のようになります。(WebSDKの場合。NativeSDKでも同様の事が可能です。)

join methodの第2引数にuser_idを指定します。

client.join(<token>, user_id, null, function(uid) {
        console.log("client" + uid + "joined channel");
    }, function(err) {
        console.error("client join failed ", err);
        // Error handling
    });
    
    

他拠点が入室したイベントは以下で取得可能です。
user_idが取得できるので、独自の管理システムに問い合わせる事で名前などの情報が取得できます。

client.on('peer-online', function(evt) {
      console.log('peer-online', evt.uid);
      //Get user information from original system
    });
    
    

シーケンス