2

I've created meeting using Amazon chime SDK in React js. Through this I can able to start a meeting. How some one can join to that meeting or add attendees to that meeting.

  • Hello Rawi! To help the community answer the question, please include some context and describe what you're expecting to have. I tried to answer as broad as I could to cover more cases, but would be better if you change the question to be more specific – Oleh Rybalchenko Nov 21 '20 at 00:44

1 Answers1

1

If your intention is to create a meeting hosted on AWS Chime programmatically, the SDK isn't what you're looking for:

Amazon Chime SDK works independently of any Amazon Chime administrator accounts, and it does not affect meetings hosted on Amazon Chime. Instead, the Amazon Chime SDK provides builder tools for developers to use to build their own meeting applications. (the docs)

Otherwise, to build your own app, first, you need a back-end to:

  • Create a meeting
  • Get an attendee for everyone who is allowed to join the conference

Then create a client app:

  • receive meeting and attendee details in your client app and initialize a meeting session with these parameters
  • connect audio and video devices
  • add observer, event and output handlers, etc

Here's a good place to start and here you can find various demos. The most common answers can be found in the FAQ.

Oleh Rybalchenko
  • 6,998
  • 3
  • 22
  • 36