I'm currently trying to build an application for Spotify. I am using the Authorization Code flow, which will return a token and refresh token.
I receive the code from Spotify successfully, however when I make a post request to https://accounts.spotify.com/api/token, I am receiving a 400 statusCode from Spotify with headers:
{ server: 'nginx',
date: 'Wed, 15 Jun 2016 16:53:11 GMT',
'content-type': 'application/json',
'content-length': '69',
connection: 'close'}
And the content of the JSON body response is
{ error: 'server_error',
error_description: 'Unexpected status: 400' }
Which leads me to believe that the server is currently not supporting this feature. If this could be fixed, that would be awesome!