jitsi / jitsi-meet-sdk-samples

Jitsi Meet mobile SDK examples (Android, iOS and React Native)
Apache License 2.0
270 stars 235 forks source link

How to pass user info dynamically? #188

Closed sidpateldev closed 11 months ago

sidpateldev commented 11 months ago

MicrosoftTeams-image (7)

How to skip this screen and show direct the call with dynamic params (user info)

saghul commented 11 months ago

You can use the feature flag or (in the next version) change the server's config.js.

sidpateldev commented 11 months ago

@saghul How to use custom url? I got a error while using custom url, For Jitsimeet url working fine

sidpateldev commented 11 months ago

You can use the feature flag or (in the next version) change the server's config.js.

which flag used here?

sidpateldev commented 11 months ago

@saghul How to use custom url? I got a error while using custom url, For Jitsimeet url working fine

saghul commented 11 months ago

What URL are you using?

saghul commented 11 months ago

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.

sidpateldev commented 11 months ago

Custom url not working to join a meeting. https://meet.jit is working fine but my custom url not able to join the meeting

saghul commented 11 months ago

What custom URL are you using?

sidpateldev commented 11 months ago

What custom URL are you using?

KolissnikBogdan commented 11 months ago

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, image image image

maybe try to remove the extra forward slash? Записати

saghul commented 11 months ago

What custom URL are you using?

https://video.bananry.com

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.

saghul commented 11 months ago

Logs.

saghul commented 11 months ago

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;
sidpateldev commented 11 months ago

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?

saghul commented 11 months ago

I mean on the server side.

sidpateldev commented 11 months ago

Ok Thanks and how we can pass user info? like name, email profile?

saghul commented 11 months ago

We hay will be part of SDK 0.3, coming soon.

saghul commented 11 months ago

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.

sidpateldev commented 11 months ago

Wow. Thanks for the update.

sidpateldev commented 11 months ago

Can you Provide all params for config? I know below params. If any other params please provide startWithAudioMuted: true, startWithVideoMuted: true, startAudioOnly: false,

saghul commented 11 months ago

Yes you can pass those on the config prop.