Skip to content

Commit 94bc0d5

Browse files
committed
Added a note to indicate Rooms support CommunicationUserIdentity only
1 parent c6cddb2 commit 94bc0d5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/communication-services/quickstarts/rooms/get-started-rooms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The following table lists the main properties of `room` objects:
2727
| `validFrom` | Earliest time a `room` can be used. |
2828
| `validUntil` | Latest time a `room` can be used. |
2929
| `pstnDialOutEnabled` | Enable or disable dialing out to a PSTN number in a room.|
30-
| `participants` | List of participants to a `room`. Specified as a `CommunicationIdentifier`. |
30+
| `participants` | List of participants to a `room`. Specified as a `CommunicationUserIdentifier`. |
3131
| `roleType` | The role of a room participant. Can be either `Presenter`, `Attendee`, or `Consumer`. |
3232

3333
::: zone pivot="platform-azcli"

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ RoomsClient roomsClient = new RoomsClientBuilder().connectionString(connectionSt
123123
## Create a room
124124

125125
### Set up room participants
126-
In order to set up who can join a room, you need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-java) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`.
126+
In order to set up who can join a room, you need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-java) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`. ACS Rooms currently supports a room participant of type CommunicationUserIdentifier only, using other types of CommunicationIdentity will result in a runtime error.
127127

128128
To use `CommunicationIdentityClient`, add the following package:
129129

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const roomsClient = new RoomsClient(connectionString);
8989

9090
### Set up room participants
9191

92-
In order to set up who can join a room, you need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-javascript) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`.
92+
In order to set up who can join a room, you need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-javascript) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`. ACS Rooms currently supports a room participant of type CommunicationUserIdentifier only, using other types of CommunicationIdentity will result in a runtime error.
9393

9494
To use the CommunicationIdentityClient, install the following npm package:
9595

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ RoomsClient roomsClient = new RoomsClient(connectionString);
9191

9292
### Set up room participants
9393

94-
In order to set up who can join a room, you'll need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-csharp) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`.
94+
In order to set up who can join a room, you'll need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-csharp) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`. ACS Rooms currently supports a room participant of type CommunicationUserIdentifier only, using other types of CommunicationIdentity will result in a runtime error.
9595

9696
To use the `CommunicationIdentityClient`, install the following package:
9797

articles/communication-services/quickstarts/rooms/includes/rooms-quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ rooms_client = RoomsClient.from_connection_string(connection_string)
7979
## Create a room
8080

8181
### Set up room participants
82-
In order to set up who can join a room, you'll need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-python) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`.
82+
In order to set up who can join a room, you'll need to have the list of the identities of those users. You can follow the instructions [here](../../identity/access-tokens.md?pivots=programming-language-python) for creating users and issuing access tokens. Alternatively, if you want to create the users on demand, you can create them using the `CommunicationIdentityClient`. ACS Rooms currently supports a room participant of type CommunicationUserIdentifier only, using other types of CommunicationIdentity will result in a runtime error.
8383

8484
To use the `CommunicationIdentityClient`, install the following package:
8585

0 commit comments

Comments
 (0)