The Sample Web App demonstrates the use of APIs for EnableX platform to develop basic Multi-Party RTC (Real Time Communication) Application. The main motivation behind this application is to demonstrate usage of APIs and allow developers to ramp up on app by hosting on their own devices instead of directly using servers.
RTC Applications hosted on EnableX platform run natively on supported set of web browsers without any additional plugin downloads.
This basic Multi-Party RTC Application is generated using HTML, CSS, Bootstrap v4.0.0-alpha.6, JAVA Script, jQuery, Node V8.9.1 and EnxRtc (The EnableX Web Toolkit).
The details of the supported set of web browsers can be found here: https://developer.enablex.io/release-notes/#cross-compatibility
When developing a Node Application with EnxRtc.js make sure to include the updated EnxRtc.js polyfills for RTCPeerConnection and getUserMedia otherwise your application will not work in web browsers.
Visit Demo Zone (https://portal.enablex.io/demo-zone/) to request a Guided Demo or Demo Access to different type of application available there.
You may also try our Video Meeting and Webinar solutions here: https://enablex.io/vcfree
- Register with EnableX [https://www.enablex.io]
- Create your Application
- Get your App ID and App Key delivered to your Email
- Clone or download this Repository [https://github.com/EnableX/Video-Conferencing-Open-Source-Web-Application-Sample.git] & follow the steps further
The Application needs to run on https. So, you need to use a valid SSL Certificate for your Domain and point your application to use them.
However you may use self-signed Certificate to run this application locally. There are many Web Sites to get a Self-Signed Certificate generated for you, Google it. Few among them are:
- https://letsencrypt.org/
- https://www.sslchecker.com/csr/self_signed
- https://www.akadia.com/services/ssh_test_certificate.html
As you have Certificate or created a Self-Signed Certificate, create a directory "certs" under your Sample Web App Directory. Copy your Certificate files (.key and .crt files) to this directory.
Before you can run this application by hosting it locally you need to customize server/vcxconfig.js
to meet your needs:
vcxconfig.SERViCE = {
name: "EnableX Sample Web App", // Name of the Application [Change optional]
version: "1.0.0", // Version [Change optional]
path: "/v1", // Route [Default /v1]
domain: "yourdomain.com", // FQDN of your hosting enviornment
port : "4443", // FQDN of your hosting port. You need sudo permission if you want to use standard 443
listen_ssl : true // SSL on/off key [ Set always to "true" ]
};
vcxconfig.Certificate = {
ssl_key: "../certs/yourdomain.key", // Use the certificate ".key" [self signed or registered]
ssl_cert : "../certs/yourdomain.crt", // Use the certificate ".crt" [self signed or registered]
sslCaCerts : ["../cert/yourdomain.ca-bundle"] // Use the certificate CA[chain] [self signed or registered]
};
vcxconfig.SERVER_API_SERVER = {
host: 'api.enablex.io', // Hosted EnableX Server API Domain Name
};
vcxconfig.clientPath = "../client"; // UI files location
vcxconfig.APP_ID = "YOUR_APP_ID"; // Enter Your App ID
vcxconfig.APP_KEY = "YOUR_APP_KEY"; // Enter Your App Key
Run npm install --save
to build the project and the build artifacts will be stored in the ./node_modules
directory.
Run node server.js
inside server
folder for starting your Server.
- Open a browser and go to https://yourdomain.com:4443/. The browser should load the App.
- Allow access to Camera and Mic as and when prompted to start your first RTC Call through EnableX
EnableX Server API is a Rest API service meant to be called from Partners' Application Server to provision video enabled meeting rooms. API Access is given to each Application through the assigned App ID and App Key. So, the App ID and App Key are to be used as Username and Password respectively to pass as HTTP Basic Authentication header to access Server API.
For this application, the following Server API calls are used:
- https://developer.enablex.io/latest/server-api/rooms-route/#get-rooms - To get list of Rooms
- https://developer.enablex.io/latest/server-api/rooms-route/#get-room-info - To get information of the given Room
- https://developer.enablex.io/latest/server-api/rooms-route/#create-token - To create Token for the given Room
To know more about Server API, go to: https://developer.enablex.io/latest/server-api/
Client End Point Application uses Web Toolkit EnxRtc.js to communicate with EnableX Servers to initiate and manage RTC Communications.
To know more about Client API, go to: https://developer.enablex.io/latest/client-api/