This commit is contained in:
sigma67 2026-03-13 02:18:48 +00:00 committed by GitHub
commit 98052e55a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,9 @@ Add your changes below.
### Fixed
- Don't override verify attribute when requesting access token in SpotifyClientCredentials.
This made it impossible to actually disable cert verification or set a custom certificate chain (i.e. in a corporate network).
### Removed
## [2.26.0] - 2026-03-03

View File

@ -227,7 +227,6 @@ class SpotifyClientCredentials(SpotifyAuthBase):
self.OAUTH_TOKEN_URL,
data=payload,
headers=headers,
verify=True,
proxies=self.proxies,
timeout=self.requests_timeout,
)