diff --git a/SpotifyWebAPI/auth/index.html b/SpotifyWebAPI/auth/index.html index 9418e56f..cd72bf5a 100644 --- a/SpotifyWebAPI/auth/index.html +++ b/SpotifyWebAPI/auth/index.html @@ -188,13 +188,13 @@ If you want to know more, you can read to the whole auth-process ImplicitGrantAuth (Recommended, no server-side code needed)
+ImplicitGrantAuth (Recommended, no server-side code needed)
AutorizationCodeAuth (Not Recommended, Server-side code needed, else it's unsecure)
+AutorizationCodeAuth (Not Recommended, Server-side code needed, else it's unsecure)
ClientCredentialsAuth (Not Recommended, Server-side code needed, else it's unsecure)
+ClientCredentialsAuth (Not Recommended, Server-side code needed, else it's unsecure)
Note: I would recommend a little PHP Script, which will exchange the Keys using AutorizationCodeAuth. diff --git a/SpotifyWebAPI/gettingstarted/index.html b/SpotifyWebAPI/gettingstarted/index.html index 404005bb..451aa84e 100644 --- a/SpotifyWebAPI/gettingstarted/index.html +++ b/SpotifyWebAPI/gettingstarted/index.html @@ -208,10 +208,10 @@ public static void Main(String[] args)
If you look through the available API-Methods, you will soon notice nearly all of them require Authentication. -Further infos on how to implement Authentication can be found here
+Further infos on how to implement Authentication can be found hereA list of small examples can be found here. Do you think a specific example is missing? Feel free to open a PR/Issue!
+A list of small examples can be found here. Do you think a specific example is missing? Feel free to open a PR/Issue!
Every API-Call returns a reponse-model which consists of base-error model. To check if a specific API-Call was successful, use the following approach:
@@ -227,70 +227,70 @@ if (profile.HasError())