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: README.md
+44-44Lines changed: 44 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@
5
5
6
6
This plugin adds functionality to the [Twilio CLI](https://github.com/twilio/twilio-cli) which supports developing and deploying real-time communication apps.
7
7
8
-
*[Getting Started](#getting-started)
9
-
*[Supported Apps](#supported-apps)
10
-
*[Commands](#commands)
8
+
-[Getting Started](#getting-started)
9
+
-[Supported Apps](#supported-apps)
10
+
-[Commands](#commands)
11
11
12
12
## Getting Started
13
13
@@ -52,17 +52,17 @@ This plugin currently supports the following applications:
52
52
53
53
A mobile and web collaboration application built with Twilio Programmable Video. Visit the projects below for instructions on how to use this plugin to build and deploy the Twilio Video app.
The following section documents the application [token server](/src/video-token-server.js) used to provide [Programable Video access tokens](https://www.twilio.com/docs/video/tutorials/user-identity-access-tokens) to supported Twilio Video applications. The token server is deployed as a [Twilio Function](https://www.twilio.com/docs/runtime/functions).
62
62
63
-
| Method | URL |
64
-
| --- | --- |
65
-
| POST |[`/token`](#token)|
63
+
| Method | URL |
64
+
| ------|------------------ |
65
+
| POST |[`/token`](#token)|
66
66
67
67
##### Authentication
68
68
@@ -74,7 +74,7 @@ Each request is verified using a passcode generated at deploy time. Passcodes re
74
74
75
75
```
76
76
{
77
-
"passcode": "1234564321",
77
+
"passcode": "12345612341234",
78
78
"user_identity": "User",
79
79
"room_name": "Demo",
80
80
}
@@ -90,11 +90,11 @@ POST /token
90
90
91
91
###### Parameters
92
92
93
-
| Name | Type | Description |
94
-
| --- | --- | --- |
95
-
|`passcode`|`string`|**Required**. The application passcode. |
96
-
|`user_identity`|`string`|**Required**. The user's identity. |
97
-
|`room_name`|`string`| A room name that will be used to create a token scoped to connecting to only one room.|
0 commit comments