From cb8b4692dfe44f08cfaeb570d276267d504d3f27 Mon Sep 17 00:00:00 2001 From: Devon Lehman Date: Thu, 16 Apr 2020 15:54:15 -0400 Subject: [PATCH] Fix getting_started.md links and table formatting (#438) --- SpotifyAPI.Docs/docs/auth/getting_started.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/SpotifyAPI.Docs/docs/auth/getting_started.md b/SpotifyAPI.Docs/docs/auth/getting_started.md index 5fc9a999..e1709e9d 100644 --- a/SpotifyAPI.Docs/docs/auth/getting_started.md +++ b/SpotifyAPI.Docs/docs/auth/getting_started.md @@ -8,21 +8,22 @@ If you want to know more, you can read to the whole auth-process [here](https:// Before you start, install `SpotifyAPI.Web.Auth` and create an application at Spotify: [Your Applications](https://developer.spotify.com/my-applications/#!/applications) After you have created your Application, you will have following important values: -|Name|Description| -|--------------|-------------------------|-------------------------| + +| Name | Description | +| -------------- |------------------------- | | **Client_Id** | This is your client_id, you don't have to hide it| | **Client_Secret** | Never use this in one of your client-side apps! Keep it secret! | | **Redirect URIs** | Some of auth flows require that you set the correct redirect URI | Now you can start with the user-authentication. Spotify provides 3 ways (4 if you consider different implementations): -* [ImplicitGrantAuth](/auth/implicit_grant.md) +* [ImplicitGrantAuth](implicit_grant.md) -* [TokenSwapAuth](/auth/token_swap.md) (**Recommended**, server-side code mandatory, most secure method. The necessary code is shown here so you do not have to code it yourself.) +* [TokenSwapAuth](token_swap.md) (**Recommended**, server-side code mandatory, most secure method. The necessary code is shown here so you do not have to code it yourself.) -* [AutorizationCodeAuth](/auth/authorization_code.md) (Not recommended, server-side code needed, else it's unsecure) +* [AutorizationCodeAuth](authorization_code.md) (Not recommended, server-side code needed, else it's unsecure) -* [ClientCredentialsAuth](/auth/client_credentials.md) (Not recommended, server-side code needed, else it's unsecure) +* [ClientCredentialsAuth](client_credentials.md) (Not recommended, server-side code needed, else it's unsecure) Overview: ![Overview](http://i.imgur.com/uf3ahTl.png)