[mirotalksfu] - update deps, fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2023-09-23 09:17:53 +02:00
الأصل 479f89e399
التزام 4f9a51e417
10 ملفات معدلة مع 71 إضافات و67 حذوفات

عرض الملف

@@ -5,14 +5,14 @@ async function getMeeting() {
// Use dynamic import with await
const { default: fetch } = await import('node-fetch');
const API_KEY = 'mirotalksfu_default_secret';
const API_KEY_SECRET = 'mirotalksfu_default_secret';
const MIROTALK_URL = 'https://sfu.mirotalk.com/api/v1/meeting';
// const MIROTALK_URL = 'http://localhost:3010/api/v1/meeting';
const response = await fetch(MIROTALK_URL, {
method: 'POST',
headers: {
authorization: API_KEY,
authorization: API_KEY_SECRET,
'Content-Type': 'application/json',
},
});