File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 33 History
44=======
55
6+ v0.8.8
7+ --------
8+ * Bugfix: OAuth Client ID, secret updated - tehkillerbee _
9+
610v0.8.7
711--------
812* OAuth Client ID, secret updated - tehkillerbee _
Original file line number Diff line number Diff line change 2323author = "The tidalapi Developers"
2424
2525# The full version, including alpha/beta/rc tags
26- release = "0.8.7 "
26+ release = "0.8.8 "
2727
2828
2929# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 2020import tidalapi
2121from tidalapi import Quality
2222
23- session_file1 = Path ("tidal-session-oauth .json" )
23+ session_file1 = Path ("tidal-session-oauthn .json" )
2424
2525session = tidalapi .Session ()
2626# Load session from file; create a new OAuth session if necessary
3232# Normal: Quality.low_320k (m4a 320k)
3333# HiFi: Quality.high_lossless (FLAC)
3434# HiFi+ Quality.hi_res_lossless (FLAC HI_RES)
35- session .audio_quality = Quality .high_lossless
35+ session .audio_quality = Quality .hi_res_lossless
3636
3737# album_id = "77640617" # U2 / Achtung Baby (Max quality: HI_RES MQA, 16bit/44100Hz)
3838# album_id = "110827651" # The Black Keys / Let's Rock (Max quality: LOSSLESS FLAC, 24bit/48000Hz)
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " tidalapi"
3- version = " 0.8.7 "
3+ version = " 0.8.8 "
44description = " Unofficial API for TIDAL music streaming service."
55authors = [
" Thomas Amland <[email protected] >" ]
66maintainers = [
" tehkillerbee <[email protected] >" ]
Original file line number Diff line number Diff line change 1717 User ,
1818)
1919
20- __version__ = "0.8.7 "
20+ __version__ = "0.8.8 "
Original file line number Diff line number Diff line change @@ -153,16 +153,12 @@ def __init__(
153153
154154 # OAuth Client Authorization
155155 self .client_id = base64 .b64decode (
156- base64 .b64decode (b"V214bmVWTnVhR3RpVnpVdw== " )
157- + base64 .b64decode (b"VjJ4a1RFMUhiRFJXUVQwOQ== " )
156+ base64 .b64decode (b"WmxneVNuaGtiVzUw " )
157+ + base64 .b64decode (b"V2xkTE1HbDRWQT09 " )
158158 ).decode ("utf-8" )
159159 self .client_secret = base64 .b64decode (
160- base64 .b64decode (
161- b"VFZVMWRVOVZSbTFTUlVaeFpVaEtibE5yV2t0WmEzUlBWakI0YkZGWQ=="
162- )
163- + base64 .b64decode (
164- b"YkV4U01WcElZbFZzVDJSV2FGRlZSWGhKVm14b1FtUnVhRUphZWpBOQ=="
165- )
160+ base64 .b64decode (b"TVU1dU9VRm1SRUZxZUhKblNrWktZa3RPVjB4bFFY" )
161+ + base64 .b64decode (b"bExSMVpIYlVsT2RWaFFVRXhJVmxoQmRuaEJaejA9" )
166162 ).decode ("utf-8" )
167163
168164 # If client_secret not supplied, fall back to client_id (matching original behavior)
You can’t perform that action at this time.
0 commit comments