jitsi / jitsi-meet-sdk-samples

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

custom server url not woking in iOS sample #73

Closed rajani9288 closed 3 years ago

rajani9288 commented 4 years ago

hello regarding custom URL, I tried to change into custom URL, But it's not working. it does not use custom my server URL to connect, it uses https://meet.jit.si. please let me know if any solution. if the issue was still there so please fix this issue.

// create and configure jitsimeet view let jitsiMeetView = JitsiMeetView() jitsiMeetView.delegate = self self.jitsiMeetView = jitsiMeetView let options = JitsiMeetConferenceOptions.fromBuilder { (builder) in builder.serverURL = URL(string: "https://mycustomurl.com") builder.welcomePageEnabled = true } jitsiMeetView.join(options)

I am using this code for my custom URL. please let me know if any error in code.

toseef31 commented 4 years ago

have you got success?

rajani9288 commented 4 years ago

No. now I am using a raw code base (https://github.com/jitsi/jitsi-meet). in this code, I change the URL in the react file. react->base->setting->constants.js. change the default URL to your URL. but you need to do lots of modifications in react native.

Bigonee commented 3 years ago

I'm also dealing with that problem, any solution?

Bigonee commented 3 years ago

I'm also dealing with that problem, any solution?

Solved,

builder.serverURL = URL(string: "mycustomurl.com") to builder.serverURL = URL(string: "https://mycustomurl.com")

rajani9288 commented 3 years ago

I already used both without https with https I did not get success. are you using iOS? sample.

rajani9288 commented 3 years ago

i change url but when i invite with url then i got jitsi url only.