From faeb042ee56e1e10b1439b4bae076a191e4c4001 Mon Sep 17 00:00:00 2001 From: Mark Huson Date: Thu, 11 May 2017 17:07:43 -0400 Subject: [PATCH] Tasks as a list (#2612) Thought I submitted a similar PR but couldn't find it. --- source/_components/media_player.spotify.markdown | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/source/_components/media_player.spotify.markdown b/source/_components/media_player.spotify.markdown index 28c413954e1..8646bed05ce 100644 --- a/source/_components/media_player.spotify.markdown +++ b/source/_components/media_player.spotify.markdown @@ -21,17 +21,19 @@ The `spotify` media player platform allows you to control [Spotify](https://www. - Spotify Premium account. - Spotify Application, properly configured. -To create the required Spotify Application, login to [Spotify Developer](https://developer.spotify.com), visit the [My Applications](https://developer.spotify.com/my-applications/#!/applications) page, and select **Create An App**. Enter any name and description. Once your application is created, you can view it and discover your **Client ID** and **Client Secret**, which are placed in the Home Assistant configuration file. Finally, add a **Redirect URI** in the following form: +To create the required Spotify Application: +- Login to [Spotify Developer](https://developer.spotify.com) +- Visit the [My Applications](https://developer.spotify.com/my-applications/#!/applications) page +- Select **Create An App**. Enter any name and description. Once your application is created, view it and copy your **Client ID** and **Client Secret**, which are used in the Home Assistant configuration file. +- Add a **Redirect URI** in the following forms: -`http:///api/spotify` + No SSL: `http://:/api/spotify` -If you've set up Home Assistant to use SSL encryption, use: + If using SSL: `https://:/api/spotify` -`https:///api/spotify` +The URL is whatever you use to access Home Assistant from outside your network (including port if applicable). -The first part of the URL will be whatever you use to access Home Assistant from outside your network (including port if applicable). - -Remember to select **Save** after adding the URI. You may also need to set the `base_url` attribute of the [HTTP Component](https://home-assistant.io/components/http/). +- Click **Save** after adding the URI. You may also need to set the `base_url` attribute of the [HTTP Component](https://home-assistant.io/components/http/). ## {% linkable_title Configuration %}