Authentication is the act of validating the identity of each user before they access a system. Agora uses digital tokens to authenticate users and their privileges before they access Agora SD-RTN to join Video Calling. Each token is valid for a limited period and works only for a specific channel. For example, you cannot use the token generated for a channel called AgoraChannel to join the AppTest channel. This page shows you how to quickly set up an authentication token server, retrieve a token from the server, and use it to connect securely to a specific Video Calling channel.
An authentication token is a dynamic key that is valid for a maximum of 24 hours. On request, a token server returns an authentication token that is valid to join a specific channel. When users attempt to connect to an Agora channel from your app, your app retrieves a token from the token server in your security infrastructure. Your app then sends this token to Agora SD- RTN for authentication. Agora SD-RTN validates the token and reads the user and project information stored in the token. A token contains the following information:
- The App ID App ID \of your Agora project
- The App certificate
- The channel name
- The user ID of the user to be authenticated (optional)
- The privilege of the user, either as a publisher or a subscriber The Unix timestamp showing when the token will expire
The following figure shows the call flow you need to implement to create step-up-authentication with Agora Video Calling:
To follow this procedure you must have:
- Open the project you created in Get Started with Video Calling.
- Log in to your Heroku account.
To integrate token authentication into your app, do the following:
- Open the project you created in Get Started with Video Calling
- Log in to your Heroku account.
In the Get Started project you implemented, the app uses an authentication token obtained manually from Agora Console to join a channel. In a production environment, your app retrieves this token from a token server. This section shows you how to:
- Create and run a token server
- Retrieve and use tokens from a token server
This section shows you how to deploy a token server on Heroku.
-
Click here and deploy a token server to Heroku. Heroku retrieves the project code and necessary files from Github and takes you to a Create New App page. On this page, fill in the following information:
app-name:
A name for your token server, containing only lowercase letters, numbers, and dashes.APP_CERTIFICATE:
The obtained from Agora Console- The
APP_ID:
App ID obtained from Agora Console
-
Click Deploy app. Heroku configures and builds the token server. You see a message 'Your app was successfully deployed.'
-
Click View. Heroku opens the token server URL in your browser. The URL is of the form
<app-name>.herokuapp.com
where<app-name>
is the name you chose for your token server.Don’t worry if you see
404 page not found
in your browser. Follow the next steps and test your server. -
Test your server
-
Ping the server
Load the following URL in a browser tab. Replace
<app-name>
with the name of your server.1 https://<app-name>.herokuapp.com/ping
You see the following message in your browser:
1 {"message": "pong"}
-
Retrieve a token
To retrieve an RTC token, send a request to the token server using a URL based on the
Token server GET request structure:
1 /rtc/:channelName/:role/:tokentype/:uid/?expiry=expireTime
For example:
https://my-token-server.herokuapp.
Your token server returns the following JSON object to your browser:
1 {"rtcToken":"ThisIsAnExampleTokenThisIsAnExampleTokenThisIsAnExampleT
To see how to create a token generator inside your IAM system, see Integrate a token generator.
-
To integrate authentication into an app:
-
Add the necessary dependencies
In order to make HTTPS calls to a token server and interpret the JSON return parameters, integrate a HTTP client into your app. In agora_project, open a command prompt, then run the following command.
1 npm install axios
-
Import the HTTP client library
To access the axios HTTP client from your project, add the following line at the beginning of the file
main.js
:1 import axios from "axios"
-
Enable the user to specify a channel
Add a text box to the user interface. Open
index.html
and add the following code before<button type="button" id="join">
.type="text" name="channel-name" id="channel-name" className="border-[1px] border-gray-300 rounded p-2 mb-3" placeholder="Enter channel name" onChange={(e) => setChannelName(e.target.value)} required={true} />```
-
Retrieve a token from the server
Use a GET request to retrieve an authentication token for a specific channel from the token server.
In
mian.js
, add the following code beforeStartBasicCall
:const handleJoinChannel = async (event: React.FormEvent<HTMLFormElement>) => { event.preventDefault(); const uid = Math.floor(Math.random() \* 100); const ExpireTime = 300; await get(`/rtc/${channelName}/1/uid/${uid}/?expiry=${ExpireTime}`) .then((res) => { console.log(res.rtcToken, "resposne"); localStorage.setItem("token", res.rtcToken); }) .catch((err) => { console.log(err); }); navigate(`/AgoraPage/${channelName}/${uid}`); };
-
Update the
join
method to fetch a tokenCall
FetchToken
to get a fresh token before joining a channel. Inmain.js
, add the following code beforeawait agoraEngine.join(
:APP_TOKEN, CHANNEL_NAME, UID, "Audio", (uid: any) => { console.log("User " + uid + " join channel successfully"); localStream.init( () => { console.log("getUserMedia successfully"); localStream.play("agora_local", { fit: "contain" }); client.publish(localStream, (err: any) => { console.log("Publish local stream error: " + err); }); client.on("stream-added", (evt: any) => { client.subscribe( evt.stream, { video: true, audio: true }, (err: any) => { console.log("Subscribe stream failed", err); } ); }); client.on("stream-subscribed", (evt: any) => { const stream = evt.stream; console.log( "Subscribe remote stream successfully: " + stream.getId() ); stream.play("agora_remote" + stream.getId()); }); }, (err: any) => { console.log("getUserMedia failed", err); } ); client.publish(localStream, (err: any) => { console.log("Publish local stream error: " + err); }); }, (err: any) => { console.log("Join channel failed", { err }); } );
To ensure that you have implemented Agora token authentication workflow in your app:
-
Generate a token in Agora Console.
Users communicate securely using channels in the same project. The App ID you use to generate this token must be the same one you supplied to Heroku.
-
In your browser, navigate to the Agora web demo and update App ID, Channel, and Token with the values for your temporary token, then click Join.
-
In your app, Update the
appID
in the declarations to the value from Agora Console . -
Set the
token
variable to an empty string in the declarations. -
Update the
serverURL
in the declarations to the base address of your token server. For example,http://app-name.herokuapp.com
. -
To start the dev server, execute the following commands in the terminal.
1 npm run dev
Use the URL displayed in the terminal to open the app in your browser.
-
Update the channel name, in the text box to the same string you used on the demo page.
-
Press Join to connect to the same channel as the web demo.
Your app magically connects to the same channel you used in web demo. You don’t need to hardcode a token in your app; each channel is secured with a specific token, and each token is refreshed automatically. That’s pretty cool!
This section contains information that completes the information in this page, or points you to documentation that explains other aspects to this product.
Source code for a token server
The token server RESTful web service used in this page is written in Golang using the Gin framework. Want to use the code in your authentication service? Download the token server source code and binaries for various platforms from Github.
To see how to create a token generator inside your IAM system, see Integrate a token generator
Token server GET request structure
A token server GET request has the following structure:
1 /rtc/:channelName/:role/:tokentype/:uid/?expiry=expireTime
:channelName
is the name of the Agora Channel you wish to join
A channel name may contain numbers with both upper and lower case letters. The name length must be less than 64 characters.
-
:role
is the user roleUse
1
for publisher,2
for subscriber. -
:token SD-RTN
supports both integer user IDs and string user accounts for token generation. To ensure smooth communication, all the users in a channel must use the same type of ID, that is, either the integeruid
, or a stringuserAccount
. Best practice is to use theuid
. -
:uid
is the user IDUser Id can be any 32-bit unsigned integer. It can be set to 0, if you do not need to authenticate the user based on the user ID.
-
expireTime
(optional) is the number of seconds after which the token will expire
By default, a token expires after 24 hours unless a shorter life span is explicitly specified in the token request.