Thank you for building this! It looks like the b64string is no longer working, presumably due to the newer Python versions?
I got it working locally using b64string = base64.b64encode(f"{api_key}:{api_secret}".encode('utf-8')).decode("ascii") instead
Thank you for building this! It looks like the b64string is no longer working, presumably due to the newer Python versions?
I got it working locally using
b64string = base64.b64encode(f"{api_key}:{api_secret}".encode('utf-8')).decode("ascii")instead