Summary
The Honeywell Home developer portal (resideo) is now displaying a prominent notice:
IMPORTANT: If your integration is still using the api.honeywell.com domain, please switch to api.honeywellhome.com
The following constants in aiolyric/const.py still reference the old domain:
AUTH_URL = "https://api.honeywell.com/oauth2/authorize"
BASE_URL = "https://api.honeywell.com/v2"
TOKEN_URL = "https://api.honeywell.com/oauth2/token"
These should be updated to:
AUTH_URL = "https://api.honeywellhome.com/oauth2/authorize"
BASE_URL = "https://api.honeywellhome.com/v2"
TOKEN_URL = "https://api.honeywellhome.com/oauth2/token"
Impact
Users running this library (including via the Home Assistant lyric integration) may experience authentication or API failures if/when Resideo deprecates the old domain.
Steps to reproduce
Visit the Honeywell Home developer site — the migration notice is displayed on the homepage.
Summary
The Honeywell Home developer portal (resideo) is now displaying a prominent notice:
The following constants in
aiolyric/const.pystill reference the old domain:These should be updated to:
Impact
Users running this library (including via the Home Assistant
lyricintegration) may experience authentication or API failures if/when Resideo deprecates the old domain.Steps to reproduce
Visit the Honeywell Home developer site — the migration notice is displayed on the homepage.