Version: 6.X
Client Credentials
The Client Credentials flow is used in server-to-server authentication. Only endpoints that do not access user information can be accessed.
By supplying your SPOTIFY_CLIENT_ID
and SPOTIFY_CLIENT_SECRET
, you get an access token.
#
Request token onceTo request an access token, build a ClientCredentialsRequest
and send it via OAuthClient
. This access token will expire after some time and you need to repeat the process.
#
Request Token On-DemandYou can also use CredentialsAuthenticator
, which will make sure the Spotify instance will always have an up-to-date access token by automatically refreshing the token on demand.
info
Thread safety is not guaranteed when using CredentialsAuthenticator
.