Fix getting_started.md links and table formatting (#438)

This commit is contained in:
Devon Lehman 2020-04-16 15:54:15 -04:00 committed by GitHub
parent 22d800d487
commit cb8b4692df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) 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: 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_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! | | **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 | | **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): 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:
![Overview](http://i.imgur.com/uf3ahTl.png) ![Overview](http://i.imgur.com/uf3ahTl.png)