Create a meeting with client-chime-sdk-meetings #5241
-
Not sure why, but after creating the meeting with Here's how I'm creating the meeting const chimeClient = new ChimeSDKMeetingsClient({ region: 'us-east-1' });
const meetingInfo = await chimeClient.send(
new CreateMeetingCommand({
ExternalMeetingId: ulid(),
MediaRegion: 'us-east-2',
}),
); And this is the response I'm getting when the
Am I missing something else? I believe I'm defining the required properties but no idea why I can't join to the meeting. If someone has used this library before or have any idea how to get past this errors would be appreciated. Thanks all! Been following the aws-sdk v3 documentation for Javascript |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
-
Im getting the same thing |
Beta Was this translation helpful? Give feedback.
-
Just found this on StackOverflow. https://stackoverflow.com/questions/77174263/can-users-join-a-meeting-created-by-the-chime-api-through-the-chime-app The meetings created by the Amazon Chime meetings application and the SDK are distinct. The Amazon Chime SDK is meant for customers who would like to build the experience into their existing applications and it is not a means to create an Amazon Chime meeting (with a PIN) that can be joined using the Amazon Chime meetings application. You cannot use the Amazon Chime SDK to build a custom client to join an Amazon Chime meeting with a PIN." |
Beta Was this translation helpful? Give feedback.
Just found this on StackOverflow. https://stackoverflow.com/questions/77174263/can-users-join-a-meeting-created-by-the-chime-api-through-the-chime-app
"
Can I use the Amazon Chime application to join an Amazon Chime SDK meeting?
The meetings created by the Amazon Chime meetings application and the SDK are distinct. The Amazon Chime SDK is meant for customers who would like to build the experience into their existing applications and it is not a means to create an Amazon Chime meeting (with a PIN) that can be joined using the Amazon Chime meetings application. You cannot use the Amazon Chime SDK to build a custom client to join an Amazon Chime meeting with a PIN."