...

/

Authorization Methods

Authorization Methods

Learn about the authorization methods we can use for the Spotify API.

The API calls made to any endpoint of Spotify API are validated based on whether the provided access token is valid or not. Spotify uses the OAuth 2.0 framework to provide these access tokens. In this lesson, we’ll discuss different types of flows Spotify API provides us to get access tokens.

Types of flows

Spotify API provides the following four types of flows to get an access token:

  • Authorization code: In this flow, the
  • ...