logo
Menu
Build a UGC Live Streaming App with Amazon IVS: Generating Stage Participant Tokens (Lesson 4.2)

Build a UGC Live Streaming App with Amazon IVS: Generating Stage Participant Tokens (Lesson 4.2)

Welcome to Lesson 4.2 in this series where we're looking at building a web based user-generated content live streaming application with Amazon IVS. This entire series is available in video format on the AWS Developers YouTube channel and all of the code related to the sample application used in this series can be viewed on GitHub. Refer to the links at the end of the post for more information.

Todd Sharp
Amazon Employee
Published Dec 15, 2023
Last Modified Jan 8, 2024

Intro

In this lesson, we will look at how the StreamCat application generates and issues stage participant tokens for real-time streams. If you're not familiar with these tokens, be sure to check out lesson 4.1 to learn what they are and why they are required.

Stage Schema Refresher

If you recall from lesson 1.5, each User has a one-to-one relationship with a Stage entity. The Stage entity has a one-to-many relationship with the StageToken entity.
Stage relationship model
Stage Relationship Model
StreamCat uses the AWS SDK for JavaScript (v3) to generate stage participant tokens, and persists them to the database. This allows the application to retrieve a token for a given user when they are needed. For a host, this token is generated when they begin a broadcast session. Hosts are able to invite other users to broadcast with them on their real-time streams, and when this invite is extended, a stage participant token is generated for that user.

Generating a Stage Participant Token

To generate a stage participant token, we can use the use the ivs-realtime module of the SDK for JavaScript. The StreamCat RealTimeService passes a CreateParticipantTokenCommandInput object to a new CreateParticipantTokenCommand, and sends that command with an instance of the IvsRealTimeClient (docs). The CreateParticipantTokenCommandInput requires a userId (the StreamCat user's id), an attributes object that accepts any arbitrary key/value pairs that to associate with the token, and the stageArn.

Persisting a Stage Participant Token

When a token is required, the createStageToken() method of the RealTimeService is invoked, and the values returned from the CreateParticipantTokenCommandOutput are persisted to the database. For example, here's how StreamCat issues a token when a host invites a user to join their real-time stream.

Summary

In this lesson, we learned how StreamCat generates stage participant tokens for real-time streams. In the next lesson, we'll see how to create a real-time conversation between a host and their invited co-hosts, and broadcast that conversation to their channel as a low-latency live stream.

Links

Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.

Comments