mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-04-23 01:16:26 +02:00
feat: add spotify oauth2 provider
This commit is contained in:
parent
fa71a36545
commit
f5e30969ef
@ -10,6 +10,17 @@ export interface SpotifyProfile {
|
||||
images: SpotifyProfileImage[];
|
||||
type: string;
|
||||
uri: string;
|
||||
// This field is only available when the current user has granted access to the user-read-private scope.
|
||||
explicit_content?: SpotifyExplicitContent;
|
||||
// This field is only available when the current user has granted access to the user-read-private scope.
|
||||
product?: string;
|
||||
// This field is only available when the current user has granted access to the user-read-private scope.
|
||||
country?: string;
|
||||
}
|
||||
|
||||
export interface SpotifyExplicitContent {
|
||||
filter_enabled: boolean;
|
||||
filter_locked: boolean;
|
||||
}
|
||||
|
||||
export interface SpotifyProfileImage {
|
||||
|
Loading…
Reference in New Issue
Block a user