A Group video calling application using the Agora Web SDK with a Django backend.
git clone https://github.com/divanov11/mychat
cd mychat
pip install -r requirements.txt
In order to use this project you will need to replace the agora credentials in views.py
and streams.js
.
Create an account at agora.io and create an app
. Once you create your app, you will want to copy the appid
& appCertificate
to update views.py
and streams.js
. If you have questions about where to get your app I'd recommend referencing this link https://youtu.be/HX6AM_1-jNM?t=88
def getToken(request):
appId = "YOUR APP ID"
appCertificate = "YOUR APPS CERTIFICATE"
......
....
const APP_ID = 'YOUR APP ID'
....
python manage.py runserver