OpenVoiceOS
Your device. Your network. Your voice.
Sign in
If someone else set up this device, ask them for the token.
If you set it up yourself, it is the value of
webui.access_token in mycroft.conf, or the one
passed with --token.
How the token is kept safe
The token is sent in the body of the request, so it is not written to a log or kept in the address bar. It is then held in a cookie that only this site can send. A good token is long and random.
How to make a strong token
For example, the output of
python3 -c "import secrets; print(secrets.token_urlsafe(32))".