Open
Description
I'm using this with Electron and I'm running into problems.
I login
ok but when I issue a getUser
it responds 404 which means I'm not logged in.
A getSession
gives the following response
{
"info": {
"authentication_db": "_users",
"authentication_handlers": ["oauth", "cookie", "default"]
},
"ok": true,
"userCtx": {
"name": null,
"roles": []
}
}
The name is null and there is no "authenticated": "cookie",
which makes me think that there is something strange about the way Electron is handling cookies.
Anybody got any suggestions as to what is happening and how I might get around this problem.