I’m attempting to start a conference utilizing lib-jitsi-meet
in a headless Chrome setup with Puppeteer and want to join it from a separate browser using the Jitsi External API (iframe API). Although I can successfully initiate a meeting in the headless environment, I face a problem when trying to access that meeting from another browser. Instead of joining the existing conference, a new one with the same title is created, leaving me as the sole participant. I would greatly appreciate any suggestions or guidance regarding this issue. Here’s a snippet of my Puppeteer setup:
const puppeteer = require('puppeteer');
const browser = await puppeteer.launch({
headless: false,
product: 'chrome',
defaultViewport: { width: 1600, height: 1600 }
});
const page = (await browser.pages())[0];
await page.goto('https://jitsi-liveroom.s3.eu-central-1.amazonaws.com/index.html');