Closed amercader closed 3 years ago
On py3 the JWT token is a bytes object and if sent as is it gets sent as b'exdf...'. Giftless can't decode it and the download fails. This change ensures that the token is a str object both in py2 and py3
bytes
b'exdf...'
str
On py3 the JWT token is a
bytes
object and if sent as is it gets sent asb'exdf...'
. Giftless can't decode it and the download fails. This change ensures that the token is astr
object both in py2 and py3