Bu kılavuzda, Arvia Web SDK kullanarak web sayfanıza nasıl görüntülü toplantı ekleyeceğinizi öğreneceksiniz.
Web SDK’yı kullanmanın en basit yolu, aşağıdaki kodda görüldüğü gibi CDN’mizden gerekli dosyaları eklemektir.
Başka bir çerçeve veya kitaplık gerekmez.
Ardından HTML’nizin gövde bölümünde bir div öğesi oluşturun ve id=”arvia.chat” değerini ayarlayın.
Arvia toplantı kullanıcı arayüzünü oluşturmak için bu div öğesini kullanacağız. Bunu Arvia Chat nesnesini başlatarak yapacağız.
var arviaChat = new ArviaChat();
arviaChat.init("arvia.chat");
Şimdilik alan doğrulamasını atlamak için testUser değerini true olarak ayarlayacağız. Doğrulama hakkında daha fazla bilgi için lütfen adresini ziyaret edin.
arviaChat.setTestUser(true);
Şimdi, SDK’da oda adını ayarlamamız gerekiyor. Test kullanıcısını true olarak ayarladığımız için test-room-x formatında bir test odası adı kullanacağız.
arviaChat.setRoomName("test-room-1");
Artık sunucuya bağlanmaya hazırız.
arviaChat.connect();
Bu kadar! Şimdi kodun tamamına bakarsak, aşağı yukarı buna benzer olacaktır.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
0 Comments