example-python-openid-connect-client icon indicating copy to clipboard operation
example-python-openid-connect-client copied to clipboard

Python 3 issue

Open charly077 opened this issue 6 years ago • 0 comments

Client.py; get_token(self, code, code_verifier):

return json.loads(token_response.read()) Should be: return json.loads(token_response.read().decode('utf-8'))

It helps as some response value could be byte encoded.

charly077 avatar Sep 17 '18 11:09 charly077