This is the first part of a two-part tutorial for creating a video web application with a Python3/Flask backend and a JavaScript frontend. In this section, you'll set up a backend server that creates free Twilio WebRTC Go video rooms and generates Access Tokens for video room participants. In part two, you'll create the frontend side of the application, where participants can join a video room and share their video and audio with other participants.
At the end of this full tutorial, you'll have a web application that allows you to join a two-person video room and video chat with another person.
You can also view the completed code from both parts of the tutorial in GitHub.
If you have already completed the backend section of this tutorial, jump over to Part Two. Otherwise, let's get going!
Open a new terminal window and navigate to the directory where you want your project to live. Then, create a project folder and change into this directory:
mkdir video_tutorial && cd video_tutorial
To start, you'll need to collect a few values from the Twilio Console so that you can connect your application to Twilio. You will store these values in a .env
file, and your server will read in these values.
Within the new project folder you created above, create a file called .env
and open it in your preferred text editor.
The first value you'll need is your Account SID, which you can find in the Twilio Console. Once you've gotten that value, store it in the .env
file:
TWILIO_ACCOUNT_SID=<your account sid>
Next, you'll need to create an API key. This is what you'll use to authenticate with Twilio when making API calls.
You can create an API key using the Twilio CLI, the REST API, or the Twilio Console. This tutorial will show how to generate it via the Console.
To generate the API Key from the Twilio Console:
When you've created the key, you'll see the friendly name, type, key SID, and API key secret.
Make sure to copy the secret now, because you'll only be able to see it once. When you leave this page, you won't be able to see the secret again.
Copy the API Key ID and the API Key Secret and store both values in the .env
file.
1TWILIO_ACCOUNT_SID=<your account sid>2TWILIO_API_KEY_SID=<key sid>3TWILIO_API_KEY_SECRET=<secret>
If you're using git for version control, make sure these credentials remain secure and out of version control. To do this, create a .gitignore
file at the root of your project directory. In this file, you can list the files and directories that you want git to ignore from being tracked or committed.
Open the new .gitignore
file in your code editor and add the .env
file. While you're here, you can also add venv/
, for the virtual environment directory you'll create in the next step.
1.env2venv/
Great! Now that you've stored those credentials and added the .env
to .gitignore
, you can move on to creating the Flask server.
First, you'll need to create and activate a virtual environment where you'll install your dependencies. In your terminal window, type the following command to create a virtual environment called venv
:
python3 -m venv venv
Then, activate the virtual environment. Whenever you run the server for this project or install dependencies, you should be in the virtual environment.
To activate the virtual environment for macOS or Unix, run the following command:
source venv/bin/activate
If you are using a Windows machine, run:
venv\Scripts\activate.bat
Then, you'll use pip to install the dependencies for this project:
In your terminal window, type the following command:
pip install flask python-dotenv twilio
This command will add the dependencies to your virtual environment. Whenever you start your server, make sure you're in the virtual environment by running source venv/bin/activate
(macOS/Unix) or venv\Scripts\activate.bat
(Windows). You'll know that you're in the virtual environment because you'll see (venv)
at the beginning of the command line prompt.
You will need a server to generate Access Tokens (to grant participants permission to access a video room) and serve the frontend code that you'll build in Part Two of this tutorial. There are several options for creating web servers with Python, but this tutorial uses Flask.
This section walks through the general setup for a basic Flask server. In the next section, you'll add the Twilio-specific code for creating video rooms.
First, create a new file called app.py
. This will be the server file where you put all the core logic for your web server. Open that file in your text editor, and copy and paste the following code into the file:
1import os2import uuid # for generating random user id values34import twilio.jwt.access_token5import twilio.jwt.access_token.grants6import twilio.rest7from dotenv import load_dotenv8from flask import Flask, render_template, request910# Load environment variables from a .env file11load_dotenv()1213# Create a Twilio client14account_sid = os.environ["TWILIO_ACCOUNT_SID"]15api_key = os.environ["TWILIO_API_KEY_SID"]16api_secret = os.environ["TWILIO_API_KEY_SECRET"]17twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)1819# Create a Flask app20app = Flask(__name__)212223# Create a route that just returns "In progress"24@app.route("/")25def serve_homepage():26return "In progress!"272829# Start the server when this file runs30if __name__ == "__main__":31app.run(host="0.0.0.0", debug=True)
At the top of the file, you import the dependencies needed for the server. Then, you load the values in your .env
file with load_dotenv
and grab the values from the environment. Using those values, you can create a client with the Twilio Python helper library. You'll use this client to communicate with Twilio.
Next, you create a basic Flask app. Currently, it is just an application with a single route that returns "In progress!".
At the bottom of the file, the server is set to run in debug mode. When the server is in debug mode, it will provide helpful error messages and it will automatically reload the server when you make changes to it. You should remove debug=True
if you run this server in production.
Currently, the application doesn't do much, but you can test it by running the command python app.py
in your terminal, making sure you're in your virtual environment. You should see output similar to the following:
1(venv) $ python app.py2* Serving Flask app 'app' (lazy loading)3* Environment: production4WARNING: This is a development server. Do not use it in a production deployment.5Use a production WSGI server instead.6* Debug mode: off7* Running on all addresses.8WARNING: This is a development server. Do not use it in a production deployment.9* Running on http://192.168.86.244:5000/ (Press CTRL+C to quit)
This will start the server on port 5000. Navigate to localhost:5000
in your browser, and you should see the string "In progress!".
Now that you have a functioning web server, you'll create a function that tells Twilio to create or find a video room.
You'll use the twilio_client
you created earlier in app.py
, and write a function to create new video rooms.
In app.py
, underneath where you create the app (app=Flask(__name__)
) and above the "/"
route, paste in the following function:
1def find_or_create_room(room_name):2try:3# try to fetch an in-progress room with this name4twilio_client.video.rooms(room_name).fetch()5except twilio.base.exceptions.TwilioRestException:6# the room did not exist, so create it7twilio_client.video.rooms.create(unique_name=room_name, type="go")
In the code above, you create a function called find_or_create_room
, which takes in a room name and checks if a video room with that name already exists for your account. If that room doesn't exist, you'll get a TwilioRestException
, which will indicate that you should create the room.
This function will create the room as a WebRTC Go room (type="go"
), which is a free room that can have up to two participants.
Eventually, you'll use this function to allow a participant to specify a room to either create or join. In the next section, you'll write a function to create an Access Token for a participant.
Here's the full app.py
code with the new find_or_create_room
function:
1import os2import uuid # for generating random user id values34import twilio.jwt.access_token5import twilio.jwt.access_token.grants6import twilio.rest7from dotenv import load_dotenv8from flask import Flask, render_template, request910# Load environment variables from a .env file11load_dotenv()1213# Create a Twilio client14account_sid = os.environ["TWILIO_ACCOUNT_SID"]15api_key = os.environ["TWILIO_API_KEY_SID"]16api_secret = os.environ["TWILIO_API_KEY_SECRET"]17twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)1819# Create a Flask app20app = Flask(__name__)212223def find_or_create_room(room_name):24try:25# try to fetch an in-progress room with this name26twilio_client.video.rooms(room_name).fetch()27except twilio.base.exceptions.TwilioRestException:28# the room did not exist, so create it29twilio_client.video.rooms.create(unique_name=room_name, type="go")303132# Create a route that just returns "In progress"33@app.route("/")34def serve_homepage():35return "In progress!"363738# Start the server when this files runs39if __name__ == "__main__":40app.run(host="0.0.0.0", debug=True)
Now, you'll create a function that returns an Access Token for a participant. An Access Token gives a participant permission to join video rooms.
The Access Token will be in the JSON Web Token (JWT) standard. The Python Twilio helper library contains functions for creating and decoding these tokens in the JWT format.
Copy and paste the following get_access_token
function into app.py
, under the find_or_create_room
function:
1def get_access_token(room_name):2# create the access token3access_token = twilio.jwt.access_token.AccessToken(4account_sid, api_key, api_secret, identity=uuid.uuid4().int5)6# create the video grant7video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)8# Add the video grant to the access token9access_token.add_grant(video_grant)10return access_token
The function does the following:
Takes in a room name
Creates an Access Token (in JWT format)
Creates a Video Grant
Adds it to the Access Token
Returns the token
The participant identity doesn't need to be a random string — it could be a value like an email, a user's name, or a user ID. However, it does need to be a unique value for the specific room. You cannot create more than one token for a given participant identity in a room.
The Video Grant is important to add to the token, because it is the piece that allows a participant to connect to video rooms. You can limit the participant's access to a particular video room (which the code above does), or you can generate a token with general access to video rooms.
If you were going to connect this application with other Twilio services, such as Twilio Sync or Twilio Conversations, you could create additional Sync or Conversation grants and add them to this token to allow access to those services as well.
Here's the full server code with the added get_access_token
function:
1import os2import uuid # for generating random user id values34import twilio.jwt.access_token5import twilio.jwt.access_token.grants6import twilio.rest7from dotenv import load_dotenv8from flask import Flask, render_template, request910# Load environment variables from a .env file11load_dotenv()1213# Create a Twilio client14account_sid = os.environ["TWILIO_ACCOUNT_SID"]15api_key = os.environ["TWILIO_API_KEY_SID"]16api_secret = os.environ["TWILIO_API_KEY_SECRET"]17twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)1819# Create a Flask app20app = Flask(__name__)212223def find_or_create_room(room_name):24try:25# try to fetch an in-progress room with this name26twilio_client.video.rooms(room_name).fetch()27except twilio.base.exceptions.TwilioRestException:28# the room did not exist, so create it29twilio_client.video.rooms.create(unique_name=room_name, type="go")303132def get_access_token(room_name):33# create the access token34access_token = twilio.jwt.access_token.AccessToken(35account_sid, api_key, api_secret, identity=uuid.uuid4().int36)37# create the video grant38video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)39# Add the video grant to the access token40access_token.add_grant(video_grant)41return access_token424344# Create a route that just returns "In progress"45@app.route("/")46def serve_homepage():47return "In progress!"484950# Start the server when this file runs51if __name__ == "__main__":52app.run(host="0.0.0.0", debug=True)
Next, you'll create a route called /join-room
. In Part Two of this Tutorial, your frontend application will make a POST
request to this /join-room
route with a room_name
in the body of the request.
Copy and paste the following code in app.py
, underneath the route that returns "In progress!":
1@app.route("/join-room", methods=["POST"])2def join_room():3# extract the room_name from the JSON body of the POST request4room_name = request.json.get("room_name")5# find an existing room with this room_name, or create one6find_or_create_room(room_name)7# retrieve an access token for this room8access_token = get_access_token(room_name)9# return the decoded access token in the response10# NOTE: if you are using version 6 of the Python Twilio Helper Library,11# you should call `access_token.to_jwt().decode()`12return {"token": access_token.to_jwt()}
This route takes a POST
request containing a JSON object with a room name, and then calls the find_or_create_room
function and the get_access_token
function. It returns the decoded Access Token, which is a JSON Web Token (JWT).
Here's the final server file with all of these pieces:
1import os2import uuid # for generating random user id values34import twilio.jwt.access_token5import twilio.jwt.access_token.grants6import twilio.rest7from dotenv import load_dotenv8from flask import Flask, render_template, request910# Load environment variables from a .env file11load_dotenv()1213# Create a Twilio client14account_sid = os.environ["TWILIO_ACCOUNT_SID"]15api_key = os.environ["TWILIO_API_KEY_SID"]16api_secret = os.environ["TWILIO_API_KEY_SECRET"]17twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)1819# Create a Flask app20app = Flask(__name__)212223def find_or_create_room(room_name):24try:25# try to fetch an in-progress room with this name26twilio_client.video.rooms(room_name).fetch()27except twilio.base.exceptions.TwilioRestException:28# the room did not exist, so create it29twilio_client.video.rooms.create(unique_name=room_name, type="go")303132def get_access_token(room_name):33# create the access token34access_token = twilio.jwt.access_token.AccessToken(35account_sid, api_key, api_secret, identity=uuid.uuid4().int36)37# create the video grant38video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)39# Add the video grant to the access token40access_token.add_grant(video_grant)41return access_token424344# Create a route that just returns "In progress"45@app.route("/")46def serve_homepage():47return "In progress!"484950@app.route("/join-room", methods=["POST"])51def join_room():52# extract the room_name from the JSON body of the POST request53room_name = request.json.get("room_name")54# find an existing room with this room_name, or create one55find_or_create_room(room_name)56# retrieve an access token for this room57access_token = get_access_token(room_name)58# return the decoded access token in the response59# NOTE: if you are using version 6 of the Python Twilio Helper Library,60# you should call `access_token.to_jwt().decode()`61return {"token": access_token.to_jwt()}626364# Start the server when this file runs65if __name__ == "__main__":66app.run(host="0.0.0.0", debug=True)
Test this new route by running the server (with the command python app.py
) and making a POST
request to http://localhost:5000/join-room
. You can use curl, Postman, HTTPie, or another tool for making this request. To make the request using curl
, run the following command in your terminal:
1curl -X POST http://localhost:5000/join-room \2-H "Content-Type: application/json" \3--data '{"room_name": "test room!"}'
You should receive output similar to the output below:
1{2"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0..."3}
You can use the site jwt.io to inspect the token you received and see the different components that make up the Access Token. If you paste the token you received into the jwt.io debugger, it will decode the token and show you what the token includes. You should see that it contains a video grant for the specific room you created. The token will also include fields with other information you provided:
iss
: your TWILIO_API_KEY_SID
sub
: your TWILIO_ACCOUNT_SID
identity
: the randomly generated uuid for the participant's identityYou now have a working backend server that will create video rooms and generate Access Tokens! You're done with this section of the tutorial and can move on to Part Two, where you'll create the frontend for this web app.