wtanner / spotify-utils

Programs that interact with Spotify
MIT License
0 stars 0 forks source link

Write a program that retrieves a list of a user's playlists. #1

Open wtanner opened 4 years ago

wtanner commented 4 years ago

Inputs

Outputs

Design Guidelines

  1. Use only the Python standard library
  2. UI/UX for these programs is the shell (e.g. bash), so we will use commandline arguments and environment variables for all configuration, if possible.
  3. Since it is a shell utility, we will use stdin and stdout for all IPC (inter-process communication)

Notes

evanH13 commented 4 years ago

I have created a Client ID for this project in the Spotify for Developers console and I have the following:

wtanner commented 4 years ago

If you want to access user playlists, I believe you need to follow this authorization flow:

Authorization flow for user data

It is more challenging than the Client flow, because it involves user interaction.