Skip to content

Commit

Permalink
Fix token_refresh() not correctly including the client secret
Browse files Browse the repository at this point in the history
  • Loading branch information
morguldir committed Jan 19, 2022
1 parent 50f1afc commit 9f8b096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidalapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def token_refresh(self, refresh_token):
'grant_type': 'refresh_token',
'refresh_token': refresh_token,
'client_id': self._config.client_id,
'client_secret': self._config.client_id
'client_secret': self._config.client_secret
}

request = requests.post(url, params)
Expand Down

0 comments on commit 9f8b096

Please sign in to comment.