mirror of https://github.com/OpenVidu/openvidu.git
openvidu-call: Fixed testing OpenVidu URL
parent
5acd93ecd0
commit
f8d76f647c
|
@ -195,7 +195,7 @@ async function joinSession(sessionName, participantName) {
|
||||||
* 3) Configure OpenVidu Web Component in your client side with the token
|
* 3) Configure OpenVidu Web Component in your client side with the token
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var OPENVIDU_SERVER_URL = "https://localhost:4443" ;
|
var OPENVIDU_SERVER_URL = "http://localhost:4443" ;
|
||||||
var OPENVIDU_SERVER_SECRET = 'MY_SECRET';
|
var OPENVIDU_SERVER_SECRET = 'MY_SECRET';
|
||||||
|
|
||||||
function getToken(sessionName) {
|
function getToken(sessionName) {
|
||||||
|
|
|
@ -57,7 +57,7 @@ export enum AttributeDirective {
|
||||||
styleUrls: ['./testing.component.scss']
|
styleUrls: ['./testing.component.scss']
|
||||||
})
|
})
|
||||||
export class TestingComponent implements OnInit {
|
export class TestingComponent implements OnInit {
|
||||||
OPENVIDU_SERVER_URL = 'https://localhost:4443';
|
OPENVIDU_SERVER_URL = 'http://localhost:4443';
|
||||||
OPENVIDU_SERVER_SECRET = 'MY_SECRET';
|
OPENVIDU_SERVER_SECRET = 'MY_SECRET';
|
||||||
sessionId: string;
|
sessionId: string;
|
||||||
templateDirectives: TemplateDirectives[] = [
|
templateDirectives: TemplateDirectives[] = [
|
||||||
|
|
Loading…
Reference in New Issue