jitsi / jitsi-meet-flutter-sdk

Jitsi Meet plugin for Flutter
Apache License 2.0
31 stars 25 forks source link

unable to join without moderator? #42

Closed SamarthSerpentCS closed 2 months ago

SamarthSerpentCS commented 4 months ago

Screenshot_20240108_125029

unable to join without moderator?

when i joined 2 devices with same ropom and and different user name then show alert unable to join without moderator. when i joined with web and login with google then works fine. i find token inside JitsiMeetConferenceOptions, but how to add in token for mobile app?

This is my code

var options = JitsiMeetConferenceOptions( serverURL: "https://meet.jit.si/", room: "ROOM12345678", configOverrides: { "startWithAudioMuted": false, "startWithVideoMuted": false, "subject": "Lipitori" }, featureFlags: { "unsaferoomwarning.enabled": false, "ios.screensharing.enabled": true }, userInfo: JitsiMeetUserInfo( displayName: "ABC", email: "abc@gmail.com", avatar: "https://cdn.pixabay.com/photo/2016/11/18/23/38/child-1837375_640.png"), );

Calinteodor commented 4 months ago

The server url that you are using has authentication and you cannot join a meeting without a moderator.

navidanchitrali commented 3 weeks ago

@Calinteodor how to authenticate user with the server URL mentioned above, or is it possible to authenticate before the message appear?

saghul commented 3 weeks ago

You cannot control authentication on meet.jit.si because that's a deployment we maintain. You should have your own deployment and then you can choose what type of auth you want.