Instance URL helper
If you are an integration developer and came across the problem of getting the URL of the users' Home Assistant instance, you probably know, this wasn't always easy.
The main problem is that a Home Assistant instance is generally installed, at home. Meaning the internal and external address can be different and even those can have variations (for example, if a user has a Home Assistant Cloud subscription).
Matters become worse if the integration has specific requirements for the URL; for example, it must be externally available and requires SSL.
As of Home Assistant Core 0.110, a new instance URL helper is introduced to ease that. We started out with the following flow chart to solve this issue:
As a result of this, the previously available base_url
is now replaced by two
new core configuration settings for the user: the internal and external URL.
From a development perspective, the use of hass.config.api.base_url
is now
deprecated in favor of the new get_url
helper method.
For more information on using and implementing this new URL helper method, consult our documentation here.