To add a WhatsApp video conference call button

I use Jitsi for my telemedicine app. It’s free and browser based.

Use a template column to make a custom url to join the user and doctor (your unique url is best as the rowID).

I paid good money to a Jitsi expert to identify the best parameters to simplify the Jitsi experience (remove their splash / Download screen, take away extra buttons, stop the hang up button, etc)

https://meet.jit.si/rowid#config.prejoinPageEnabled=false&interfaceConfig.TOOLBAR_BUTTONS=[]&config.disableDeepLinking=true&userInfo.displayName=%22name%22

In this URL;

config.prejoinPageEnabled parameter controls whether to show the user a screen where they can test their audio-visual quality and enter a username. By setting it to “false”, we may skip this screen and proceed directly into the meeting.

interfaceConfig.TOOLBAR_BUTTONS parameter controls which buttons to display. By passing it empty, we can keep all the buttons from being visible.

config.disableDeepLinking parameter controls whether to show the user an entry page where they can choose to download the app or proceed in the browser. By setting it true, we can skip this page.

[userInfo.displayName=%22name%22](https://meet.jit.si/rowid#config.prejoinPageEnabled=false&interfaceConfig.TOOLBAR_BUTTONS=[]&config.disableDeepLinking=true&userInfo.displayName=%22name%22) parameter sets the name of the user as “name”.

A gift to the community :slight_smile: you need to embed as a webview (Pro apps).

And it works like :star2::champagne::sparkles:

20 Likes