We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My client uses xmpp and maybe will also use rest.
For xmpp at the moment I need username and password. To have passwords in cookies is not really state of the art.
After rest login I have a "credentials" cookie and I would like to use this cookie for xmpp login. Does that kind of auth already exist?
It would be easy to send the sessionid as password.
The implementation should be easy using json_http https://github.com/scastillo/prosody-mod_auth_json_http
socket.send( 'xmpp.login', { "jid": "[email protected]", "password": "sessionid" } )
Any suggestions on that?
The text was updated successfully, but these errors were encountered:
This is an interesting suggestion and something that I've been worried about for a while.
Would you see it as:
Would any of the oauth2 bits (https://developers.google.com/talk/jep_extensions/oauth) help us here?
Sorry, something went wrong.
That looks good.
No branches or pull requests
My client uses xmpp and maybe will also use rest.
How to login?
For xmpp at the moment I need username and password.
To have passwords in cookies is not really state of the art.
After rest login I have a "credentials" cookie and I would like to use this cookie for xmpp login.
Does that kind of auth already exist?
It would be easy to send the sessionid as password.
The implementation should be easy using json_http
https://github.com/scastillo/prosody-mod_auth_json_http
socket.send(
'xmpp.login',
{
"jid": "[email protected]",
"password": "sessionid"
}
)
Any suggestions on that?
The text was updated successfully, but these errors were encountered: