You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using this addon https://github.com/hassio-addons/addon-ledfx installed on rpi.
Web UI for this addon require basic authorization with HA login and password. Without this REST API don't work.
It's same rpi, where ledfxrm is installed.
Please add BasicAuth to ledfxrm
I replace code like this
session.get(url4, ssl=False, auth=aiohttp.BasicAuth('bob', ''))
to
session.get(url4, ssl=False, auth=aiohttp.BasicAuth('user', 'pwd'))
and it helps a bit.
The text was updated successfully, but these errors were encountered:
I'm using this addon https://github.com/hassio-addons/addon-ledfx installed on rpi.
Web UI for this addon require basic authorization with HA login and password. Without this REST API don't work.
It's same rpi, where ledfxrm is installed.
Please add BasicAuth to ledfxrm
I replace code like this
session.get(url4, ssl=False, auth=aiohttp.BasicAuth('bob', ''))
to
session.get(url4, ssl=False, auth=aiohttp.BasicAuth('user', 'pwd'))
and it helps a bit.
The text was updated successfully, but these errors were encountered: