JavaScript
Configure a Vonage Video Application
For our video application to work, we need a way for our client and server to talk to the Vonage servers. We need to set up a Vonage Application to house all of the configuration for our application, as well as help generate the necessary items for us to do authentication.
Head on over to your Vonage Customer Dashboard and log in. Once you are logged in:
- Click on "Applications" under "Build."
- Click on "Create a new application."
- Give the application a name, like "Basic Video Demo."
- Click on "Generate public and private key", which will have you download a file named
private.key. Keep track of this file for later. - Scroll down and toggle on "Video". We will leave these values empty for now.
- Click on "Generate new application" to create the application.
Once the application is created, note the Application ID. We will need this when we configure our application in later steps.
Basic video chat
Learn the basic concepts of the Vonage Video API platform, including how users can communicate through video, voice, and messaging. Explore a basic Vonage Video API flow.
Steps
1
Overview2
Before You Begin3
Configure a Vonage Video Application4
Creating the Project Folders and HTML Template5
Setting Up Authentication6
Connecting to the Session and Creating a Publisher7
Initializing the Subscriber8
Testing your code in a browser9
A little bit of CSS customization10
Conclusion