Hi,
I'm trying to do a GET request on /me/top/tracks but I get a 500 internal server error.
I first do a POST request for a bearer token:
curl --location --request POST 'https://accounts.spotify.com/api/token?grant_type=client_credentials&scope=user-top-read' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Basic xxx'
This works and I get a bearer token.
curl --location --request GET 'https://api.spotify.com/v1/me/top/tracks' \
--header 'Authorization: Bearer yyy'
Then I receive a 500 internal server error.