Skip to main content

πŸ”’ Fix Addon Permission Issues

If your Homeway add-on lost its authentication or permissions to Home Assistant, here's how to fix it!

Updated over 5 months ago

The standalone Homeway add-on requires a long-lived Home Assistant access token to communicate with Home Assistant. Add-on authentication is required for Homeway features like Google Assistant and Alexa Assistants.

Here's how to update your long-lived authentication token:

If you use the CLI standalone Homeway add-on:

  1. SSH into the device running the Homeway add-on.

  2. Go to the Homeway plugin folder:

    1. cd ~/homeway

  3. Run the install script:

    1. ./install

  4. The installer will find your add-on and guide you through the process of setting up the long-lived access token.

  5. Done πŸ₯³

If you use the docker standalone Homeway add-on:

  1. Create a new long-lived access token in Home Assistant:

    1. Go to your Home Assistant dashboard.

    2. Click your user name and image in the bottom right corner to open the account UI.

    3. Select the "Security" tab at the top of the webpage.

    4. Scroll to the bottom to the header "Long-lived access tokens"

    5. Click "Create Token"

    6. Give the token any name you want.

    7. Copy the access-token.

  2. Update the docker compose file:

    1. Open your docker-compose file and paste the new access token into the HOME_ASSISTANT_ACCESS_TOKEN field.

    2. Restart the docker container.

      1. docker compose restart

Did this answer your question?