You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Changelog
2
2
3
+
## 0.8.0
4
+
5
+
### New Features
6
+
7
+
- Added support for Twilio Conversations. When an application requests a token from the `/token` endpoint, a `create_conversation=true` parameter can now be specified. When this parameter is present, the `/token` endpoint will create a conversation that is associated with the room and add the participant to it. This allows video application to use [Twilio Conversations](https://www.twilio.com/conversations-api) for in-room chat.
Copy file name to clipboardExpand all lines: README.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,20 +82,21 @@ Each request is verified using a passcode generated at deploy time. Passcodes re
82
82
83
83
### Token
84
84
85
-
Returns a Programmable Video Access token.
85
+
This endpoint returns a Programmable Video Access token. When `create_room` is true, it will create a room, and when `create_conversation` is true, it will create a [Twilio Conversation](https://www.twilio.com/docs/conversations/api/conversation-resource) associated with the room. This token is used by the above mentioned Video Apps to connect to a video room and a conversation.
|`passcode`|`string`|**Required**. The application passcode. |
96
+
|`user_identity`|`string`|**Required**. The user's identity. |
97
+
|`room_name`|`string`|**Required when `create_room` is `true`** A room name that will be used to create a token scoped to connecting to only one room. |
98
+
|`create_room`|`boolean`| (default: `true`) When false, a room will not be created when a token is requested. |
99
+
|`create_conversation`|`boolean`| (default: `false`) When true, a [Twilio Conversation](https://www.twilio.com/docs/conversations/api/conversation-resource) will be created (if it doesn't already exist) and a participant will be added to it when a token is requested. `create_room` must also be `true`. |
0 commit comments