7

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.

Nadeem
  • 73
  • 1
  • 1
  • 3
  • 1
    so after some digging, I have found this Jitsi Meet API - https://github.com/jitsi/jitsi-meet/blob/master/doc/api.md#jitsi-meet-api. Working on a demo to use this API. – Nadeem Dec 13 '15 at 12:04

2 Answers2

6

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.

mirkobrankovic
  • 2,301
  • 1
  • 17
  • 22
5

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

Ankit Arora
  • 51
  • 1
  • 3