[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
<iframe
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;"
></iframe>
```
@@ -41,7 +41,7 @@ Develop your `website` or `application`, and bring `video meetings` in with a si
```html
<iframe
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;"
></iframe>
```

عرض الملف

@@ -3,7 +3,7 @@
const fetch = require('node-fetch');
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() {
return fetch(MIROTALK_URL, {

عرض الملف

@@ -1,7 +1,7 @@
<?php
$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();
curl_setopt($ch, CURLOPT_URL, $MIROTALK_URL);

عرض الملف

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

عرض الملف

@@ -1,7 +1,7 @@
#!/bin/bash
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 \
--header "authorization: $API_KEY" \