Twilio Video — access tokens
twilio/video · version 1
envs add twilio/video
This declares the keys below in your catalog and sets none of them. A template is a schema for keys; it never carries a value.
| Key | Needed | Kind | Notes |
|---|---|---|---|
TWILIO_ACCOUNT_SID |
required | secret | Twilio calls it the public identifier of the account behind an access token. That describes its role inside an issued token, not permission to ship the raw value, and it is half of a basic auth pair elsewhere, so it stays secret here as it does in the other Twilio template.. Shape ^AC[0-9a-fA-F]{32}$. where to get it |
TWILIO_API_KEY |
required | secret | A signing key distinct from the account's auth token. Twilio calls this a public identifier too, on the same reading. One wrinkle worth knowing: a key must be in the US1 region or video rooms will not connect.. where to get it |
TWILIO_API_SECRET |
required | secret | Signs the access token the browser receives. Plainly the private half, and the browser never sees it.. where to get it |