Skip to content

Commit 9f8b096

Browse files
committed
Fix token_refresh() not correctly including the client secret
1 parent 50f1afc commit 9f8b096

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tidalapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def token_refresh(self, refresh_token):
288288
'grant_type': 'refresh_token',
289289
'refresh_token': refresh_token,
290290
'client_id': self._config.client_id,
291-
'client_secret': self._config.client_id
291+
'client_secret': self._config.client_secret
292292
}
293293

294294
request = requests.post(url, params)

0 commit comments

Comments
 (0)