Join a teams meeting
Azure Communication Services SDKs can allow your users to join regular Microsoft Teams meetings. Here's how!
Prerequisites
- An Azure account with an active subscription. Create an account for free.
- A deployed Communication Services resource. Create a Communication Services resource.
- A user access token to enable the calling client. For more information, see Create and manage access tokens.
- Optional: Complete the quickstart to add voice calling to your application
To join a Teams meeting, use the join
method and pass a meeting link or a meeting's coordinates.
Join by using a meeting link:
const locator = { meetingLink: '<MEETING_LINK>'}
const call = callAgent.join(locator);
Join by using meeting coordinates (this is currently in limited preview):
const locator = {
threadId: <thread id>,
organizerId: <organizer id>,
tenantId: <tenant id>,
messageId: <message id>
}
const call = callAgent.join(locator);
Next steps
Feedback
Submit and view feedback for