mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
49 lines
1018 B
JavaScript
49 lines
1018 B
JavaScript
module.exports = {
|
|
docs: {
|
|
'SpotifyAPI-NET': [
|
|
'introduction',
|
|
'getting_started',
|
|
{
|
|
type: 'category',
|
|
label: 'Guides',
|
|
items: [
|
|
'error_handling',
|
|
'configuration',
|
|
'logging',
|
|
'proxy',
|
|
'pagination',
|
|
'retry_handling',
|
|
'iplayableitem',
|
|
'unit_testing'
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Authentication Guides',
|
|
items: [
|
|
'auth_introduction',
|
|
'client_credentials',
|
|
'implicit_grant',
|
|
'authorization_code',
|
|
'pkce',
|
|
'token_swap'
|
|
]
|
|
},
|
|
'showcase',
|
|
{
|
|
type: 'category',
|
|
label: 'Examples',
|
|
items: [
|
|
'example_asp',
|
|
'example_blazor_wasm',
|
|
'example_blazor',
|
|
'example_cli_custom_html',
|
|
'example_cli_persistent_config',
|
|
'example_token_swap',
|
|
'example_uwp'
|
|
]
|
|
},
|
|
]
|
|
}
|
|
};
|