Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 1.1 KB

README.md

File metadata and controls

22 lines (17 loc) · 1.1 KB

esp32-spotify-oled

View your current playing song on ESP32 & OLED display using Spotify API

Libraries

Spotify

Authentication

  • Authenticate the app using your browser (Chrome)
  • Enable Developer tools Ctrl+Shift+I
  • Add Client ID & Redirect URI (URL Encoded) -> http%3A%2F%2Fhttpbin.org%2Fanything
  • Authentication Link: https://accounts.spotify.com/authorize?response_type=token&redirect_uri=" + redirect + "&client_id=" + client_id + "&scope=user-read-playback-state+user-read-playback-position+user-modify-playback-state&state=cryq3
  • It should redirect to the specified URI with an Access Token on the URL
  • Copy the Cookie value to the sketch

image