mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-11 22:17:46 +00:00
Fixed wrong paths
This commit is contained in:
parent
74afdf8006
commit
c3e8a33db8
@ -14,11 +14,11 @@ After you created your Application, you will have following important values:
|
|||||||
|
|
||||||
Now you can start with the User-authentication, Spotify provides 3 ways:
|
Now you can start with the User-authentication, Spotify provides 3 ways:
|
||||||
|
|
||||||
* [ImplicitGrantAuth](/SpotifyWebApi/#implicitgrantauth) (**Recommended**, no server-side code needed)
|
* [ImplicitGrantAuth](/SpotifyWebAPI/auth#implicitgrantauth) (**Recommended**, no server-side code needed)
|
||||||
|
|
||||||
* [AutorizationCodeAuth](/SpotifyWebApi/#implicitgrantauth) (Not Recommended, Server-side code needed, else it's unsecure)
|
* [AutorizationCodeAuth](/SpotifyWebAPI/auth#autorizationcodeauth) (Not Recommended, Server-side code needed, else it's unsecure)
|
||||||
|
|
||||||
* [ClientCredentialsAuth](/SpotifyWebApi/#implicitgrantauth) (Not Recommended, Server-side code needed, else it's unsecure)
|
* [ClientCredentialsAuth](/SpotifyWebAPI/auth#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.
|
**Note:** I would recommend a little PHP Script, which will exchange the Keys using AutorizationCodeAuth.
|
||||||
When using ImplicitGrantAuth, another user could abuse the "localhost" RedirectUri by creating a "fake"-app which uses your ClientId.
|
When using ImplicitGrantAuth, another user could abuse the "localhost" RedirectUri by creating a "fake"-app which uses your ClientId.
|
||||||
|
@ -39,12 +39,12 @@ public static void Main(String[] args)
|
|||||||
|
|
||||||
##Authentication
|
##Authentication
|
||||||
If you look through the available API-Methods, you will soon notice nearly all of them require Authentication.
|
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](/SpotifyWebApi/auth)
|
Further infos on how to implement Authentication can be found [here](/SpotifyWebAPI/auth)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
##Examples
|
##Examples
|
||||||
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!
|
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!
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@ -64,59 +64,59 @@ if (profile.HasError())
|
|||||||
##API-Reference
|
##API-Reference
|
||||||
|
|
||||||
###Albums
|
###Albums
|
||||||
* [GetAlbumTracks](/SpotifyWebApi/albums#getalbumtracks)
|
* [GetAlbumTracks](/SpotifyWebAPI/albums#getalbumtracks)
|
||||||
* [GetAlbum](/SpotifyWebApi/albums#getalbum)
|
* [GetAlbum](/SpotifyWebAPI/albums#getalbum)
|
||||||
* [GetSeveralAlbums](/SpotifyWebApi/albums#getseveralalbums)
|
* [GetSeveralAlbums](/SpotifyWebAPI/albums#getseveralalbums)
|
||||||
|
|
||||||
###Artists
|
###Artists
|
||||||
* [GetArtist](/SpotifyWebApi/artists#getartist)
|
* [GetArtist](/SpotifyWebAPI/artists#getartist)
|
||||||
* [GetRelatedArtists](/SpotifyWebApi/artists#getrelatedartists)
|
* [GetRelatedArtists](/SpotifyWebAPI/artists#getrelatedartists)
|
||||||
* [GetArtistsTopTracks](/SpotifyWebApi/artists#getartiststoptracks)
|
* [GetArtistsTopTracks](/SpotifyWebAPI/artists#getartiststoptracks)
|
||||||
* [GetArtistsAlbums](/SpotifyWebApi/artists#getartistsalbums)
|
* [GetArtistsAlbums](/SpotifyWebAPI/artists#getartistsalbums)
|
||||||
* [GetSeveralArtists](/SpotifyWebApi/artists#getseveralartists)
|
* [GetSeveralArtists](/SpotifyWebAPI/artists#getseveralartists)
|
||||||
|
|
||||||
###Browse
|
###Browse
|
||||||
* [GetFeaturedPlaylists](/SpotifyWebApi/browse#getfeaturedplaylists)
|
* [GetFeaturedPlaylists](/SpotifyWebAPI/browse#getfeaturedplaylists)
|
||||||
* [GetNewAlbumReleases](/SpotifyWebApi/browse#getnewalbumreleases)
|
* [GetNewAlbumReleases](/SpotifyWebAPI/browse#getnewalbumreleases)
|
||||||
* [GetCategories](/SpotifyWebApi/browse#getcategories)
|
* [GetCategories](/SpotifyWebAPI/browse#getcategories)
|
||||||
* [GetCategory](/SpotifyWebApi/browse#getcategory)
|
* [GetCategory](/SpotifyWebAPI/browse#getcategory)
|
||||||
* [GetCategoryPlaylists](/SpotifyWebApi/browse#getcategoryplaylists)
|
* [GetCategoryPlaylists](/SpotifyWebAPI/browse#getcategoryplaylists)
|
||||||
|
|
||||||
###Follow
|
###Follow
|
||||||
* [Follow](/SpotifyWebApi/follow#follow)
|
* [Follow](/SpotifyWebAPI/follow#follow)
|
||||||
* [Unfollow](/SpotifyWebApi/follow#unfollow)
|
* [Unfollow](/SpotifyWebAPI/follow#unfollow)
|
||||||
* [IsFollowing](/SpotifyWebApi/follow#isfollowing)
|
* [IsFollowing](/SpotifyWebAPI/follow#isfollowing)
|
||||||
* [FollowPlaylist](/SpotifyWebApi/follow#followplaylist)
|
* [FollowPlaylist](/SpotifyWebAPI/follow#followplaylist)
|
||||||
* [UnfollowPlaylist](/SpotifyWebApi/follow#unfollowplaylist)
|
* [UnfollowPlaylist](/SpotifyWebAPI/follow#unfollowplaylist)
|
||||||
* [IsFollowingPlaylist](/SpotifyWebApi/follow#isfollowingplaylist)
|
* [IsFollowingPlaylist](/SpotifyWebAPI/follow#isfollowingplaylist)
|
||||||
|
|
||||||
###Library
|
###Library
|
||||||
* [SaveTracks](/SpotifyWebApi/library#savetracks)
|
* [SaveTracks](/SpotifyWebAPI/library#savetracks)
|
||||||
* [SaveTrack](/SpotifyWebApi/library#savetrack)
|
* [SaveTrack](/SpotifyWebAPI/library#savetrack)
|
||||||
* [GetSavedTracks](/SpotifyWebApi/library#getsavedtracks)
|
* [GetSavedTracks](/SpotifyWebAPI/library#getsavedtracks)
|
||||||
* [RemoveSavedTracks](/SpotifyWebApi/library#removesavedtracks)
|
* [RemoveSavedTracks](/SpotifyWebAPI/library#removesavedtracks)
|
||||||
* [CheckSavedTracks](/SpotifyWebApi/library#checksavedtracks)
|
* [CheckSavedTracks](/SpotifyWebAPI/library#checksavedtracks)
|
||||||
|
|
||||||
###Playlists
|
###Playlists
|
||||||
* [GetUserPlaylists](/SpotifyWebApi/playlists#getuserplaylists)
|
* [GetUserPlaylists](/SpotifyWebAPI/playlists#getuserplaylists)
|
||||||
* [GetPlaylist](/SpotifyWebApi/playlists#getplaylist)
|
* [GetPlaylist](/SpotifyWebAPI/playlists#getplaylist)
|
||||||
* [GetPlaylistTracks](/SpotifyWebApi/playlists#getplaylisttracks)
|
* [GetPlaylistTracks](/SpotifyWebAPI/playlists#getplaylisttracks)
|
||||||
* [CreatePlaylist](/SpotifyWebApi/playlists#createplaylist)
|
* [CreatePlaylist](/SpotifyWebAPI/playlists#createplaylist)
|
||||||
* [UpdatePlaylist](/SpotifyWebApi/playlists#updateplaylist)
|
* [UpdatePlaylist](/SpotifyWebAPI/playlists#updateplaylist)
|
||||||
* [ReplacePlaylistTracks](/SpotifyWebApi/playlists#replaceplaylisttracks)
|
* [ReplacePlaylistTracks](/SpotifyWebAPI/playlists#replaceplaylisttracks)
|
||||||
* [RemovePlaylistTracks](/SpotifyWebApi/playlists#removeplaylisttracks)
|
* [RemovePlaylistTracks](/SpotifyWebAPI/playlists#removeplaylisttracks)
|
||||||
* [RemovePlaylistTrack](/SpotifyWebApi/playlists#removeplaylisttrack)
|
* [RemovePlaylistTrack](/SpotifyWebAPI/playlists#removeplaylisttrack)
|
||||||
* [AddPlaylistTracks](/SpotifyWebApi/playlists#addplaylisttracks)
|
* [AddPlaylistTracks](/SpotifyWebAPI/playlists#addplaylisttracks)
|
||||||
* [AddPlaylistTrack](/SpotifyWebApi/playlists#addplaylisttrack)
|
* [AddPlaylistTrack](/SpotifyWebAPI/playlists#addplaylisttrack)
|
||||||
* [ReorderPlaylist](/SpotifyWebApi/playlists#reorderplaylist)
|
* [ReorderPlaylist](/SpotifyWebAPI/playlists#reorderplaylist)
|
||||||
|
|
||||||
###Profiles
|
###Profiles
|
||||||
* [GetPublicProfile](/SpotifyWebApi/profiles#getpublicprofile)
|
* [GetPublicProfile](/SpotifyWebAPI/profiles#getpublicprofile)
|
||||||
* [GetPrivateProfile](/SpotifyWebApi/profiles#getprivateprofile)
|
* [GetPrivateProfile](/SpotifyWebAPI/profiles#getprivateprofile)
|
||||||
|
|
||||||
###Search
|
###Search
|
||||||
* [SearchItems](/SpotifyWebApi/search#searchitems)
|
* [SearchItems](/SpotifyWebAPI/search#searchitems)
|
||||||
|
|
||||||
###Tracks
|
###Tracks
|
||||||
* [GetSeveralTracks](/SpotifyWebApi/tracks#getseveraltracks)
|
* [GetSeveralTracks](/SpotifyWebAPI/tracks#getseveraltracks)
|
||||||
* [GetTrack](/SpotifyWebApi/tracks#gettrack)
|
* [GetTrack](/SpotifyWebAPI/tracks#gettrack)
|
||||||
|
Loading…
Reference in New Issue
Block a user