-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathapi.ts
39 lines (31 loc) · 936 Bytes
/
api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import dotenv from 'dotenv';
import express from 'express';
import type { Express } from 'express';
import { AccessToken } from 'livekit-server-sdk';
dotenv.config({ path: '.env.local' });
const LIVEKIT_API_KEY = process.env.LIVEKIT_API_KEY;
const LIVEKIT_API_SECRET = process.env.LIVEKIT_API_SECRET;
const LIVEKIT_URL = process.env.LIVEKIT_URL;
const app = express();
app.use(express.json());
app.post('/api/get-token', async (req, res) => {
const { identity, roomName } = req.body;
if (!LIVEKIT_API_KEY || !LIVEKIT_API_SECRET) {
res.status(500).json({ error: 'Server misconfigured' });
return;
}
const token = new AccessToken(LIVEKIT_API_KEY, LIVEKIT_API_SECRET, {
identity,
});
token.addGrant({
room: roomName,
roomJoin: true,
canPublish: true,
canSubscribe: true,
});
res.json({
token: await token.toJwt(),
url: LIVEKIT_URL,
});
});
export const handler: Express = app;