Skip to content

Commit 29d5153

Browse files
authored
Merge pull request #374 from EbbLabs/feature/v0.8.8
Update token
2 parents 397a576 + ef03933 commit 29d5153

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
History
44
=======
55

6+
v0.8.8
7+
--------
8+
* Bugfix: OAuth Client ID, secret updated - tehkillerbee_
9+
610
v0.8.7
711
--------
812
* OAuth Client ID, secret updated - tehkillerbee_

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "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 ---------------------------------------------------

examples/simple.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import tidalapi
2121
from tidalapi import Quality
2222

23-
session_file1 = Path("tidal-session-oauth.json")
23+
session_file1 = Path("tidal-session-oauthn.json")
2424

2525
session = tidalapi.Session()
2626
# Load session from file; create a new OAuth session if necessary
@@ -32,7 +32,7 @@
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)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tidalapi"
3-
version = "0.8.7"
3+
version = "0.8.8"
44
description = "Unofficial API for TIDAL music streaming service."
55
authors = ["Thomas Amland <[email protected]>"]
66
maintainers = ["tehkillerbee <[email protected]>"]

tidalapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
User,
1818
)
1919

20-
__version__ = "0.8.7"
20+
__version__ = "0.8.8"

tidalapi/session.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)