Closed sidpateldev closed 1 year ago
You can use the feature flag or (in the next version) change the server's config.js.
@saghul How to use custom url? I got a error while using custom url, For Jitsimeet url working fine
You can use the feature flag or (in the next version) change the server's config.js.
which flag used here?
@saghul How to use custom url? I got a error while using custom url, For Jitsimeet url working fine
What URL are you using?
Currently no URL parameters will help you but a fix is incoming.
If you are using the SDK you can use the feature flag to prevent the screen from appearing.
Custom url not working to join a meeting. https://meet.jit is working fine but my custom url not able to join the meeting
What custom URL are you using?
What custom URL are you using?
What custom URL are you using?
i have the same error when i use custom URL on android ,but work fine on ios,need you help plz,
maybe try to remove the extra forward slash?
What custom URL are you using?
I think it's something related to config.js but I couldn't see what. Can you share your logs?
For everyone testing on Android: you need a valid TLS vertificate or it won't work.
Logs.
Ah, missed that one. Looks like you are running an old version of Jitsi Meet on the server, I encourage you to upgrade.
You can fix your current installation like so:
Towards the end, where you have this:
config.flags.sourceNameSignaling = true;
config.flags.sendMultipleVideoStreams = true;
config.flags.receiveMultipleVideoStreams = true;
Put this:
config.flags = {};
config.flags.sourceNameSignaling = true;
config.flags.sendMultipleVideoStreams = true;
config.flags.receiveMultipleVideoStreams = true;
Ah, missed that one. Looks like you are running an old version of Jitsi Meet on the server, I encourage you to upgrade.
You can fix your current installation like so:
Towards the end, where you have this:
config.flags.sourceNameSignaling = true; config.flags.sendMultipleVideoStreams = true; config.flags.receiveMultipleVideoStreams = true;
Put this:
config.flags = {}; config.flags.sourceNameSignaling = true; config.flags.sendMultipleVideoStreams = true; config.flags.receiveMultipleVideoStreams = true;
I am using version "@jitsi/react-native-sdk": "^0.2.1", is this latest or not?
I mean on the server side.
Ok Thanks and how we can pass user info? like name, email profile?
We hay will be part of SDK 0.3, coming soon.
SDK 0.3.0 is out. The API has changed a bit so please take a look when updating. You can now pass user info.
Wow. Thanks for the update.
Can you Provide all params for config? I know below params. If any other params please provide startWithAudioMuted: true, startWithVideoMuted: true, startAudioOnly: false,
Yes you can pass those on the config prop.
How to skip this screen and show direct the call with dynamic params (user info)