How to get Spotify music list without Authentication

1.3k Views Asked by At

I want to know about, is it possible to Fetch a Spotify music list without an Access token or Aothuentication in mobile flutter SDK or web API. because I want to only Fetch the Spotify music list in my flutter app. Thanks in advance.

1

There are 1 best solutions below

2
Quentin Hayot On

The Spotify API requires app authentication or user authentication depending on the ressource.

Playlists are always associated with an user and require a valid Access Token (which means user authentication). See the playlists documentation here.

Both Public and Private playlists belonging to any user are retrievable on provision of a valid access token.

On the other hand, albums for example can be retrieved with just the app credentials and do not require an authenticated user.