Open aaykmr opened 5 years ago
would be nice if it could remember the login details, so you only have to do it once.
Hi,
It may be because secret is null when new FocusComponent is used. If this secret is prosody, set as follows. see https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md
prosodyctl register focus auth.jitsi.example.com SECRET
Is openfire-ofmeet-plugin doing the same process as "prosodyctl register focus"?
jicofo new FocusComponent
FocusComponent component
= new FocusComponent(
host, port, componentDomain, componentSubDomain,
secret, focusAnonymous, focusUserName + "@" + focusDomain);
openfire-ofmeet-plugin new FocusComponent
jicofoComponent = new FocusComponent( XMPPServer.getInstance().getServerInfo().getHostname(), 0, XMPPServer.getInstance().getServerInfo().getXMPPDomain(), jicofoSubdomain,
null, focusAnonymous, XMPPServer.getInstance().createJID( "focus", null ).toBareJID() );
The only method I know of is what I use in Pade. Store in localStorage at window.load
localStorage.setItem("xmpp_username_override", "user@domain" );
localStorage.setItem("xmpp_password_override", "pa$$word");
and remove at window.unload events
localStorage.removeItem("xmpp_username_override");
localStorage.removeItem("xmpp_password_override");
There is such a method, I will try it!
In this way, the username password query is gone. Thank you!
localStorage.setItem("xmpp_username_override", "user@domain" );
localStorage.setItem("xmpp_password_override", "pa$$word");
As with jitsi meet, we would be happy if we could make the configuration without default authentication.
Looking here (https://github.com/jitsi/jitsi-meet/blob/master/doc/manual-install.md#configure-prosody), Adding an XMPP main domain with "anonymous" seemed to have no default authentication. (I don't know how to do that ...)
Go here in openfire - https://server:9090/reg-settings.jsp
Wonderful! ! Anonymous Login is done. I like openfire-ofmeet-plugin because it runs on Windows ! !
Thank you in the future.
Openfire Meeting now supports Windows SSO using NTLM See https://github.com/igniterealtime/openfire-pade-plugin/issues/47
I am using Openfire Meetings plugin, and the video call opens up from my webapp when the user clicks a link. On clicking the link Jitsi again asks for username and password. I want to automatically authenticate the users as they are already logged in to the webapp. I have the credentials but can't find a way to auto authenticate Jitsi.
I have tried:
1) Anonymous login: Not desirable, because then anyone who is not a part of our app can use the service.
2) Sending keys in the url.
3) Using jwt: Didn't work but I'd like some help on this.
4) Debugging the source code on Chrome, code is complex so couldn't find much.