From 2a41da95dec16e442afe7e350d6820940ff2d0ca Mon Sep 17 00:00:00 2001 From: simieski <57907847+simieski@users.noreply.github.com> Date: Sat, 13 Jun 2020 07:54:29 +0100 Subject: [PATCH] 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 --- source/_integrations/tado.markdown | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/_integrations/tado.markdown b/source/_integrations/tado.markdown index 3fcd541688e..0b0a6f38345 100644 --- a/source/_integrations/tado.markdown +++ b/source/_integrations/tado.markdown @@ -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.