Skip to content

Commit c3e8a33

Browse files
author
Johnny Dellinger @PC
committed
Fixed wrong paths
1 parent 74afdf8 commit c3e8a33

2 files changed

Lines changed: 45 additions & 45 deletions

File tree

docs/SpotifyWebAPI/auth.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ After you created your Application, you will have following important values:
1414
1515
Now you can start with the User-authentication, Spotify provides 3 ways:
1616

17-
* [ImplicitGrantAuth](/SpotifyWebApi/#implicitgrantauth) (**Recommended**, no server-side code needed)
17+
* [ImplicitGrantAuth](/SpotifyWebAPI/auth#implicitgrantauth) (**Recommended**, no server-side code needed)
1818

19-
* [AutorizationCodeAuth](/SpotifyWebApi/#implicitgrantauth) (Not Recommended, Server-side code needed, else it's unsecure)
19+
* [AutorizationCodeAuth](/SpotifyWebAPI/auth#autorizationcodeauth) (Not Recommended, Server-side code needed, else it's unsecure)
2020

21-
* [ClientCredentialsAuth](/SpotifyWebApi/#implicitgrantauth) (Not Recommended, Server-side code needed, else it's unsecure)
21+
* [ClientCredentialsAuth](/SpotifyWebAPI/auth#clientcredentialsauth) (Not Recommended, Server-side code needed, else it's unsecure)
2222

2323
**Note:** I would recommend a little PHP Script, which will exchange the Keys using AutorizationCodeAuth.
2424
When using ImplicitGrantAuth, another user could abuse the "localhost" RedirectUri by creating a "fake"-app which uses your ClientId.

docs/SpotifyWebAPI/gettingstarted.md

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ public static void Main(String[] args)
3939

4040
##Authentication
4141
If you look through the available API-Methods, you will soon notice nearly all of them require Authentication.
42-
Further infos on how to implement Authentication can be found [here](/SpotifyWebApi/auth)
42+
Further infos on how to implement Authentication can be found [here](/SpotifyWebAPI/auth)
4343

4444
---
4545

4646
##Examples
47-
A list of small examples can be found [here](/SpotifyWebApi/examples). Do you think a specific example is missing? Feel free to open a PR/Issue!
47+
A list of small examples can be found [here](/SpotifyWebAPI/examples). Do you think a specific example is missing? Feel free to open a PR/Issue!
4848

4949
---
5050

@@ -64,59 +64,59 @@ if (profile.HasError())
6464
##API-Reference
6565

6666
###Albums
67-
* [GetAlbumTracks](/SpotifyWebApi/albums#getalbumtracks)
68-
* [GetAlbum](/SpotifyWebApi/albums#getalbum)
69-
* [GetSeveralAlbums](/SpotifyWebApi/albums#getseveralalbums)
67+
* [GetAlbumTracks](/SpotifyWebAPI/albums#getalbumtracks)
68+
* [GetAlbum](/SpotifyWebAPI/albums#getalbum)
69+
* [GetSeveralAlbums](/SpotifyWebAPI/albums#getseveralalbums)
7070

7171
###Artists
72-
* [GetArtist](/SpotifyWebApi/artists#getartist)
73-
* [GetRelatedArtists](/SpotifyWebApi/artists#getrelatedartists)
74-
* [GetArtistsTopTracks](/SpotifyWebApi/artists#getartiststoptracks)
75-
* [GetArtistsAlbums](/SpotifyWebApi/artists#getartistsalbums)
76-
* [GetSeveralArtists](/SpotifyWebApi/artists#getseveralartists)
72+
* [GetArtist](/SpotifyWebAPI/artists#getartist)
73+
* [GetRelatedArtists](/SpotifyWebAPI/artists#getrelatedartists)
74+
* [GetArtistsTopTracks](/SpotifyWebAPI/artists#getartiststoptracks)
75+
* [GetArtistsAlbums](/SpotifyWebAPI/artists#getartistsalbums)
76+
* [GetSeveralArtists](/SpotifyWebAPI/artists#getseveralartists)
7777

7878
###Browse
79-
* [GetFeaturedPlaylists](/SpotifyWebApi/browse#getfeaturedplaylists)
80-
* [GetNewAlbumReleases](/SpotifyWebApi/browse#getnewalbumreleases)
81-
* [GetCategories](/SpotifyWebApi/browse#getcategories)
82-
* [GetCategory](/SpotifyWebApi/browse#getcategory)
83-
* [GetCategoryPlaylists](/SpotifyWebApi/browse#getcategoryplaylists)
79+
* [GetFeaturedPlaylists](/SpotifyWebAPI/browse#getfeaturedplaylists)
80+
* [GetNewAlbumReleases](/SpotifyWebAPI/browse#getnewalbumreleases)
81+
* [GetCategories](/SpotifyWebAPI/browse#getcategories)
82+
* [GetCategory](/SpotifyWebAPI/browse#getcategory)
83+
* [GetCategoryPlaylists](/SpotifyWebAPI/browse#getcategoryplaylists)
8484

8585
###Follow
86-
* [Follow](/SpotifyWebApi/follow#follow)
87-
* [Unfollow](/SpotifyWebApi/follow#unfollow)
88-
* [IsFollowing](/SpotifyWebApi/follow#isfollowing)
89-
* [FollowPlaylist](/SpotifyWebApi/follow#followplaylist)
90-
* [UnfollowPlaylist](/SpotifyWebApi/follow#unfollowplaylist)
91-
* [IsFollowingPlaylist](/SpotifyWebApi/follow#isfollowingplaylist)
86+
* [Follow](/SpotifyWebAPI/follow#follow)
87+
* [Unfollow](/SpotifyWebAPI/follow#unfollow)
88+
* [IsFollowing](/SpotifyWebAPI/follow#isfollowing)
89+
* [FollowPlaylist](/SpotifyWebAPI/follow#followplaylist)
90+
* [UnfollowPlaylist](/SpotifyWebAPI/follow#unfollowplaylist)
91+
* [IsFollowingPlaylist](/SpotifyWebAPI/follow#isfollowingplaylist)
9292

9393
###Library
94-
* [SaveTracks](/SpotifyWebApi/library#savetracks)
95-
* [SaveTrack](/SpotifyWebApi/library#savetrack)
96-
* [GetSavedTracks](/SpotifyWebApi/library#getsavedtracks)
97-
* [RemoveSavedTracks](/SpotifyWebApi/library#removesavedtracks)
98-
* [CheckSavedTracks](/SpotifyWebApi/library#checksavedtracks)
94+
* [SaveTracks](/SpotifyWebAPI/library#savetracks)
95+
* [SaveTrack](/SpotifyWebAPI/library#savetrack)
96+
* [GetSavedTracks](/SpotifyWebAPI/library#getsavedtracks)
97+
* [RemoveSavedTracks](/SpotifyWebAPI/library#removesavedtracks)
98+
* [CheckSavedTracks](/SpotifyWebAPI/library#checksavedtracks)
9999

100100
###Playlists
101-
* [GetUserPlaylists](/SpotifyWebApi/playlists#getuserplaylists)
102-
* [GetPlaylist](/SpotifyWebApi/playlists#getplaylist)
103-
* [GetPlaylistTracks](/SpotifyWebApi/playlists#getplaylisttracks)
104-
* [CreatePlaylist](/SpotifyWebApi/playlists#createplaylist)
105-
* [UpdatePlaylist](/SpotifyWebApi/playlists#updateplaylist)
106-
* [ReplacePlaylistTracks](/SpotifyWebApi/playlists#replaceplaylisttracks)
107-
* [RemovePlaylistTracks](/SpotifyWebApi/playlists#removeplaylisttracks)
108-
* [RemovePlaylistTrack](/SpotifyWebApi/playlists#removeplaylisttrack)
109-
* [AddPlaylistTracks](/SpotifyWebApi/playlists#addplaylisttracks)
110-
* [AddPlaylistTrack](/SpotifyWebApi/playlists#addplaylisttrack)
111-
* [ReorderPlaylist](/SpotifyWebApi/playlists#reorderplaylist)
101+
* [GetUserPlaylists](/SpotifyWebAPI/playlists#getuserplaylists)
102+
* [GetPlaylist](/SpotifyWebAPI/playlists#getplaylist)
103+
* [GetPlaylistTracks](/SpotifyWebAPI/playlists#getplaylisttracks)
104+
* [CreatePlaylist](/SpotifyWebAPI/playlists#createplaylist)
105+
* [UpdatePlaylist](/SpotifyWebAPI/playlists#updateplaylist)
106+
* [ReplacePlaylistTracks](/SpotifyWebAPI/playlists#replaceplaylisttracks)
107+
* [RemovePlaylistTracks](/SpotifyWebAPI/playlists#removeplaylisttracks)
108+
* [RemovePlaylistTrack](/SpotifyWebAPI/playlists#removeplaylisttrack)
109+
* [AddPlaylistTracks](/SpotifyWebAPI/playlists#addplaylisttracks)
110+
* [AddPlaylistTrack](/SpotifyWebAPI/playlists#addplaylisttrack)
111+
* [ReorderPlaylist](/SpotifyWebAPI/playlists#reorderplaylist)
112112

113113
###Profiles
114-
* [GetPublicProfile](/SpotifyWebApi/profiles#getpublicprofile)
115-
* [GetPrivateProfile](/SpotifyWebApi/profiles#getprivateprofile)
114+
* [GetPublicProfile](/SpotifyWebAPI/profiles#getpublicprofile)
115+
* [GetPrivateProfile](/SpotifyWebAPI/profiles#getprivateprofile)
116116

117117
###Search
118-
* [SearchItems](/SpotifyWebApi/search#searchitems)
118+
* [SearchItems](/SpotifyWebAPI/search#searchitems)
119119

120120
###Tracks
121-
* [GetSeveralTracks](/SpotifyWebApi/tracks#getseveraltracks)
122-
* [GetTrack](/SpotifyWebApi/tracks#gettrack)
121+
* [GetSeveralTracks](/SpotifyWebAPI/tracks#getseveraltracks)
122+
* [GetTrack](/SpotifyWebAPI/tracks#gettrack)

0 commit comments

Comments
 (0)