cloud9_note

cloud9に限らないメモ

View on GitHub

Spotify API

Dashboard

https://developer.spotify.com/dashboard

Token取得

client_id=
secret=

url -X POST "https://accounts.spotify.com/api/token" \
    -H "Content-Type: application/x-www-form-urlencoded" \
    -d "grant_type=client_credentials&client_id=$client_id&client_secret=$secret"