Hi team
JWT token is enabled for respective meeting room
After implementing JWT : /?jwt=
Once the user entered URL with JWT, i see in left panel with “Username & join meeting button”
So, how to disable that and give direct access to the meeting
Please suggest how to implement it.
thanks & regards
thanks and regards
In config.js, set this to false:
// Require users to always specify a display name.
// requireDisplayName: true,
// Enables webhid functionality for Audio.
// enableWebHIDFeature: false,
// DEPRECATED! Use 'welcomePage.disabled' instead.
// Whether to use a welcome page or not. In case it's false a random room
// will be joined when no room is specified.
// enableWelcomePage: true,
// Configs for welcome page.
// welcomePage: {
// // Whether to disable welcome page. In case it's disabled a random room
// // will be joined when no room is specified.
// disabled: false,
// // If set,landing page will redirect to this URL.
// customUrl: ''
// },
Thanks so much for your reply,
Below are the things which i done.
i turned the enableWelcomePage as false
Once i click on the link, it displays below
Actual One should be as below:
i would like the welcome page,
disable only the left panel and join meeting
so that the same user can directly enter the conference meet… without join meeting or start meeing (using JWT)
Please guide me with this
Very much appreciate your kind reply
thanks and regards once again
emrah
April 3, 2023, 9:54am
4
This is controlled by prejoinConfig
// prejoinConfig: {
// // When 'true', it shows an intermediate page before joining, where the user can configure their devices.
// // This replaces `prejoinPageEnabled`.
// enabled: true,
// // Hides the participant name editing field in the prejoin screen.
// // If requireDisplayName is also set as true, a name should still be provided through
// // either the jwt or the userInfo from the iframe api init object in order for this to have an effect.
// hideDisplayName: false,
// // List of buttons to hide from the extra join options dropdown.
// hideExtraJoinButtons: ['no-audio', 'by-phone'],
// },
Wooow !!! that worked like a charm.
I just turned prejoinConfig.enabled from “true” to false.
You saved my life
Thank you so much for helping me out!!!
thanks and regards