Is it possible to implement In-App video chatting?

I want a live real-time video chatting feature in my app, can I implement this in wappler

1 Like

If you are asking if we have a component providing this functionality - the answer is no.
You can use any third party service for this and integrate it into your site/app.

1 Like

Speaking of which…
We hard coded in PHP these instructions for creating a jitsi object (sample code below) and it works.
But can we use the client side API action component for the same purpose?

const domain = 'meet.jit.si';
const options = {
    roomName: 'test room',
    parentNode: document.querySelector('#meet')
};
const api = new JitsiMeetExternalAPI(domain, options);

I am not getting the same result with the component:
image

It looks like it requires some JavaScript, rather than directly calling an API, to create and process the connection so the Wappler API won’t be able to do this. Best sticking with the Jitsi provided library

We did integrate the Meet API library in the header in order to enable the Jitsi Meet API in our app.

<script src='https://meet.jit.si/external_api.js'></script>

Not good enough?

No, I doubt it. The line of code in my reply suggests that it is creating a class object which will have a series of code upon construction that will establish and process the link. It isn’t a simple API call.

Okay thanks🙏