[mirotalksfu] - fix typo - update dep.

هذا الالتزام موجود في:
Miroslav Pejic
2022-04-05 21:31:02 +02:00
الأصل 0c8c5f2f1a
التزام 6f647f7b67
6 ملفات معدلة مع 9 إضافات و9 حذوفات

عرض الملف

@@ -29,7 +29,7 @@ Embedding a meeting into a `service` or `app` requires using an `iframe` with th
```html ```html
<iframe <iframe
allow="camera; microphone; fullscreen; display-capture; autoplay" allow="camera; microphone; fullscreen; display-capture; autoplay"
src="https://localhost:3010/join/room_name" src="https://sfu.mirotalk.org/join/room_name"
style="height: 100%; width: 100%; border: 0px;" style="height: 100%; width: 100%; border: 0px;"
></iframe> ></iframe>
``` ```
@@ -41,7 +41,7 @@ Develop your `website` or `application`, and bring `video meetings` in with a si
```html ```html
<iframe <iframe
allow="camera; microphone; fullscreen; display-capture; autoplay" allow="camera; microphone; fullscreen; display-capture; autoplay"
src="https://localhost:3010/newroom" src="https://sfu.mirotalk.org/newroom"
style="height: 100%; width: 100%; border: 0px;" style="height: 100%; width: 100%; border: 0px;"
></iframe> ></iframe>
``` ```

عرض الملف

@@ -3,7 +3,7 @@
const fetch = require('node-fetch'); const fetch = require('node-fetch');
const API_KEY = 'mirotalksfu_default_secret'; const API_KEY = 'mirotalksfu_default_secret';
const MIROTALK_URL = 'http://localhost:3010/api/v1/meeting'; const MIROTALK_URL = 'https://sfu.mirotalk.org/api/v1/meeting';
function getResponse() { function getResponse() {
return fetch(MIROTALK_URL, { return fetch(MIROTALK_URL, {

عرض الملف

@@ -1,7 +1,7 @@
<?php <?php
$API_KEY = "mirotalksfu_default_secret"; $API_KEY = "mirotalksfu_default_secret";
$MIROTALK_URL = "http://localhost:3010/api/v1/meeting"; $MIROTALK_URL = "https://sfu.mirotalk.org/api/v1/meeting";
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $MIROTALK_URL); curl_setopt($ch, CURLOPT_URL, $MIROTALK_URL);

عرض الملف

@@ -2,7 +2,7 @@ import requests
import json import json
API_KEY = "mirotalksfu_default_secret" API_KEY = "mirotalksfu_default_secret"
MIROTALK_URL = "http://localhost:3010/api/v1/meeting" MIROTALK_URL = "https://sfu.mirotalk.org/api/v1/meeting"
headers = { headers = {
"authorization": API_KEY, "authorization": API_KEY,

عرض الملف

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
API_KEY="mirotalksfu_default_secret" API_KEY="mirotalksfu_default_secret"
MIROTALK_URL="http://localhost:3010/api/v1/meeting" MIROTALK_URL="https://sfu.mirotalk.org/api/v1/meeting"
curl $MIROTALK_URL \ curl $MIROTALK_URL \
--header "authorization: $API_KEY" \ --header "authorization: $API_KEY" \

عرض الملف

@@ -23,8 +23,8 @@
"mediasoup": "3.9.9", "mediasoup": "3.9.9",
"mediasoup-client": "3.6.51", "mediasoup-client": "3.6.51",
"ngrok": "4.3.1", "ngrok": "4.3.1",
"@sentry/node": "^6.19.2", "@sentry/node": "^6.19.4",
"@sentry/integrations": "^6.19.2", "@sentry/integrations": "^6.19.4",
"socket.io": "4.4.1", "socket.io": "4.4.1",
"swagger-ui-express": "4.3.0", "swagger-ui-express": "4.3.0",
"uuid": "8.3.2", "uuid": "8.3.2",
@@ -32,6 +32,6 @@
}, },
"devDependencies": { "devDependencies": {
"node-fetch": "^2.6.7", "node-fetch": "^2.6.7",
"prettier": "2.6.1" "prettier": "2.6.2"
} }
} }