Added alternative method for finding home_id (#13730)

* Added alternative method for finding home_id

It's much easier to find the home_id using developer tools. Particularly if tado is returning an auth error when using the suggested method.

* Update formatting

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
simieski 2020-06-13 07:54:29 +01:00 committed by GitHub
parent 9818792311
commit 2a41da95de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,3 +127,16 @@ Find your `home_id` by browsing to `https://my.tado.com/api/v2/me?username=YOUR_
```
In this example `12345` is the `home_id` you'll need to configure.
### Finding your `home_id` alternative
If the above method returns an unauthorized error. The `home_id` can also be found using Chrome developer tools. Whilst logged into https://my.tado.com/webapp, take the following steps:
- Select the "Networ"' tab
- Filter for "home"
- Under "Name", select "users"
- Click on the "Response" tab
The `home_id` appears in the response for users as `"id":12345`
In this example `12345` is the `home_id` you'll need to configure.