Create a Realtime app key
POST
/v1/realtime/apps/{realtime_app_id}/keys
bird realtime apps keys create <realtime-app-id>curl -X POST "https://us1.platform.bird.com/v1/realtime/apps/{realtime_app_id}/keys" \
-H "Authorization: Bearer $TOKEN"响应201
{
"id": "rak_01krdgeqcxet5s7t44vh8rt9mg",
"key": "d0e95a856ddc1b09d4c8",
"secret": "862925e1991a8b6902f9"
}
Adds a new key to the app and returns it with its secret. Store the secret when you receive it because later responses do not include it. Use this together with revoke for zero-downtime rotation: add a key, roll it out across your clients, then revoke the old key.
参数
realtime_app_id
string
ID of the Realtime app (rap_ prefix), as returned when the app was created.
响应载荷
id
string
必填
key
string
必填
The public app key clients use to connect.
secret
string
The key secret, used for server-side request signing. Returned only when the key is created, and never shown again: store it securely. If lost, create a new key and revoke this one.
revoked_at
nullable string
必填
When the key was revoked, or null if still active.
created_at
string
必填