I’ve successfully configured and installed jitsi, along with jitsi-meet-tokens:
I’m however having issues with the URL we generate to navigate to a room.
The following URL works when you do not have authentication, we don’t want people who are logged into our software and joins while logged in to be required to use a username or a password when joining a meeting.
The code below works when token identification is not required:
“<some_url>/lsjkukataa#jitsi_meet_external_api_id=”
When “jitsi-meet-tokens” is installed, and a token is provided to the url I ge the following url:
“<some_url>/lsjkukataa?=<jwt_token>/#jitsi_meet_external_api_id=”
This URL does not work, and throws an error, specifically beacuse of the / between the jwt token and the api args.
The correct URL should be:
“<some_url>/lsjkukataa?=<jwt_token>#jitsi_meet_external_api_id=”
This URL validates correctly and you’re allowed to join the meeting.
I am suspecting that the wild / comes from the front end api, when it evaluates the the provided URL to navigate too it. Does anyone have an idea of how to fix this issue?