I believe I need help with the new auth component.
I have enabled the new auth component on my HA version 0.76.2. Initially all was ok. I have cleared the browser cache at my main computer, logged in and created a couple of users and configured options (like language) for each of them separately. After that I logged in to HA at another computer, accepted the prompt to save the login data and again everything was ok.
Next thing I wanted to log in from the third computer. The login was successful and again I accepted the prompt to save the login data. And at that moment I remembered that I forgot to clear the cache on this computer. So I cleared the cache and logged in from scratch. The login was successful but I got no prompt to save the login data. Since then I tried it multiple times, tried to restart HA, restart the browser, cleaned the cache multiple times but nothing helped: the prompt to save login never appeared and I had to enter the password each time I restarted the browser. Options were not stored as well so I had to change the language and set Lovelace as the default UI each time.
I looked into HA ‘.storage’ folder. File ‘auth’ seemed to be growing with each new login, here are a couple of entries as an example:
{
“access_token_expiration”: 1800.0,
“client_id”: “https://xxxxx.duckdns.org/”,
“created_at”: “2018-08-27T14:04:47.621876+00:00”,
“id”: “eb2xxxxxxxxxxxxxxxxxxxxxxxx”,
“jwt_key”: “9b8xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”,
“token”: “01c011xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”,
“user_id”: “e46xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”
},
{
“access_token_expiration”: 1800.0,
“client_id”: “https://xxxxx.duckdns.org/”,
“created_at”: “2018-08-27T14:10:10.022900+00:00”,
“id”: “3b0xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”,
“jwt_key”: “741xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”,
“token”: “d8610xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx”,
“user_id”: “e46xxxxxxxxxxxxxxxxxxxxxxxxxx”
},
There were multiple entries of this type, the timestamps allowed to assume that a new entry was created at each login.
Is it an expected behavior? Do I need to clean ‘auth’ file in some way? What can I do to the third computer (since I cannot still make login data remembered for it)?
Sorry if I missed something but I could not find any similar issues.