Spotify.NET/assets/js/b38eaed3.3110e8ec.js

1 line
6.1 KiB
JavaScript
Raw Normal View History

"use strict";(self.webpackChunkspotify_api_docs=self.webpackChunkspotify_api_docs||[]).push([[4440],{6093:function(e){e.exports=JSON.parse('{"pluginId":"default","version":"5.1.1","label":"5.1.1","banner":"unmaintained","badge":true,"noIndex":false,"className":"docs-version-5.1.1","isLast":false,"docsSidebars":{"version-5.1.1/someSidebar":[{"type":"category","label":"SpotifyAPI-NET","items":[{"type":"link","label":"Home","href":"/SpotifyAPI-NET/docs/5.1.1/home","docId":"home"}],"collapsed":true,"collapsible":true},{"type":"category","label":"SpotifyAPI-NET.Web","items":[{"type":"link","label":"Getting Started","href":"/SpotifyAPI-NET/docs/5.1.1/web/getting_started","docId":"web/getting_started"},{"type":"link","label":"Albums","href":"/SpotifyAPI-NET/docs/5.1.1/web/albums","docId":"web/albums"},{"type":"link","label":"Artists","href":"/SpotifyAPI-NET/docs/5.1.1/web/artists","docId":"web/artists"},{"type":"link","label":"Browse","href":"/SpotifyAPI-NET/docs/5.1.1/web/browse","docId":"web/browse"},{"type":"link","label":"Follow","href":"/SpotifyAPI-NET/docs/5.1.1/web/follow","docId":"web/follow"},{"type":"link","label":"Library","href":"/SpotifyAPI-NET/docs/5.1.1/web/library","docId":"web/library"},{"type":"link","label":"Personalization","href":"/SpotifyAPI-NET/docs/5.1.1/web/personalization","docId":"web/personalization"},{"type":"link","label":"Player","href":"/SpotifyAPI-NET/docs/5.1.1/web/player","docId":"web/player"},{"type":"link","label":"Playlists","href":"/SpotifyAPI-NET/docs/5.1.1/web/playlists","docId":"web/playlists"},{"type":"link","label":"Profiles","href":"/SpotifyAPI-NET/docs/5.1.1/web/profiles","docId":"web/profiles"},{"type":"link","label":"Proxy Settings","href":"/SpotifyAPI-NET/docs/5.1.1/web/proxy","docId":"web/proxy"},{"type":"link","label":"Search","href":"/SpotifyAPI-NET/docs/5.1.1/web/search","docId":"web/search"},{"type":"link","label":"Tracks","href":"/SpotifyAPI-NET/docs/5.1.1/web/tracks","docId":"web/tracks"},{"type":"link","label":"Utilities","href":"/SpotifyAPI-NET/docs/5.1.1/web/utilities","docId":"web/utilities"}],"collapsed":true,"collapsible":true},{"type":"category","label":"SpotifyAPI-NET.Auth","items":[{"type":"link","label":"Getting Started","href":"/SpotifyAPI-NET/docs/5.1.1/auth/getting_started","docId":"auth/getting_started"},{"type":"link","label":"Implicit Grant","href":"/SpotifyAPI-NET/docs/5.1.1/auth/implicit_grant","docId":"auth/implicit_grant"},{"type":"link","label":"Authorization Code","href":"/SpotifyAPI-NET/docs/5.1.1/auth/authorization_code","docId":"auth/authorization_code"},{"type":"link","label":"Client Credentials","href":"/SpotifyAPI-NET/docs/5.1.1/auth/client_credentials","docId":"auth/client_credentials"},{"type":"link","label":"Token Swap","href":"/SpotifyAPI-NET/docs/5.1.1/auth/token_swap","docId":"auth/token_swap"}],"collapsed":true,"collapsible":true}]},"docs":{"auth/authorization_code":{"id":"auth/authorization_code","title":"Authorization Code","description":"This way is not recommended for client-side apps and requires server-side code to run securely.","sidebar":"version-5.1.1/someSidebar"},"auth/client_credentials":{"id":"auth/client_credentials","title":"Client Credentials","description":"With this approach, you make a POST Request with a base64 encoded string (consists of ClientId + ClientSecret). You will directly get the token (Without a local HTTP Server), but it will expire and can\'t be refreshed.","sidebar":"version-5.1.1/someSidebar"},"auth/getting_started":{"id":"auth/getting_started","title":"Getting Started","description":"Auth-Methods","sidebar":"version-5.1.1/someSidebar"},"auth/implicit_grant":{"id":"auth/implicit_grant","title":"Implicit Grant","description":"This way is recommended and the only auth-process which does not need a server-side exchange of keys. With this approach, you directly get a Token object after the user authed your application.","sidebar":"version-5.1.1/someSidebar"},"auth/token_swap":{"id":"auth/token_swap","title":"Token Swap","description":"This way uses server-side code or at least access to an exchange server,