Spotify User Authorization
class SpotifyUserAuthorization(var authorizationCode: String? = null, var tokenString: String? = null, var token: Token? = null, var refreshTokenString: String? = null, var pkceCodeVerifier: String? = null)(source)
User-defined authorization parameters
Parameters
authorization Code
Only available when building SpotifyClientApi. Spotify auth code
token
Build the API using an existing token. If you're building SpotifyClientApi, this will be your access token. If you're building SpotifyApi, it will be your refresh token
token String
Build the API using an existing token (string). If you're building SpotifyClientApi, this will be your access token. If you're building SpotifyApi, it will be your refresh token. There is a very limited time constraint on these before the API automatically refreshes them
refresh Token String
Refresh token, given as a string, to be exchanged to Spotify for a new token
pkce Code Verifier
The code verifier generated that the client authenticated with (using its code challenge)