Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,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.25.2] - 2025-11-26
Expand Down
1 change: 0 additions & 1 deletion spotipy/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ def _request_access_token(self):
self.OAUTH_TOKEN_URL,
data=payload,
headers=headers,
verify=True,
proxies=self.proxies,
timeout=self.requests_timeout,
)
Expand Down
Loading