I successfully built a React + Electron application to create and join meetings using AWS Chime SDK. I want to build a tool or small app of some sort that I can use to join a started meeting programmatically with a given number of dummy attendees, for testing purposes (e.g. to create 100 attendees).
Is there a way to easily achieve that? There's no need for audio/video for now.
I tried using the CLI to achieve this, by leveraging the API I built to create the attendee and get their session (incl. join token) using simple curl commands, but I have no idea how to join the meeting.
Later edit: The CLI approach doesn't seem to work, so I created a simple React app instead, using the AWS Chime SDK Component Library React. I'm trying to figure out if I need a single MediaManager or multiple ones for each attendee.