Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to embed jitsi with my web application using REST API CALL?

Tags:

rest

api

jitsi

I have made a web application which allows any user to chat using sockets. Now I want to use jitsi to make video calls.

All users on my application are authenticated users. When a user clicks on the call button in chat window, I want to launch Jitsi Meet Conference in a new window by using a REST API Call.

Any guidance or pointers in the right directions is highly appreciated.

like image 207
Nadeem Avatar asked Dec 13 '15 09:12

Nadeem


2 Answers

For embbeded version you can follow this link and it should work perfectly if you have jitsi-meet running correctly on some domain (public or local):

https://github.com/jitsi/jitsi-meet/blob/master/doc/api.md

lib-jitsi-meet is API if you want to build your own UI and not use embbeded one.

like image 114
mirkobrankovic Avatar answered Oct 19 '22 18:10

mirkobrankovic


Try and use the lib-jitsi-meet library. Jitsi Meet application is built on top of the same library. The library provides base functions to connect to Jitsi and embed the same in your custom application. By using the Jitsi Meet application API, you might not be able to customise your application to the way you want. You can follow the example at the following link: https://github.com/jitsi/lib-jitsi-meet/blob/master/doc/example/example.js

like image 34
Ankit Arora Avatar answered Oct 19 '22 20:10

Ankit Arora