Browse a dashboard without user/password authentication

Hi,
I’m experimenting for a new project.

I need to view a dashboard in an headless browser in which i cannot enter username and password.

There is a way to open a dashboard page using, for example, a token as url parameter or header?

Thank you

https://www.home-assistant.io/docs/authentication/providers/

1 Like

@Harry13 it does not seem to do what the OP asked, specifically, expose only a specific dashboard.

I don’t see why not.
You can setup a user and set that user to a specific dashboard.
You can in the auth Prov docs not only specific a trusted ip you can tie a user to it as well.

Sure with the network auth-provider you can accomplish the 1st part:

homeassistant:
  auth_providers:
    - type: trusted_networks
      trusted_networks:
        - 192.168.0.0/24
        - fd00::/8
      trusted_users:
        - foo
      allow_bypass_login: true

But how about preventing user from accessing the rest dashboards?

Could “kisk mode” be the answer to that?