Bug in `authorization_url` scopes parsing?
Closed this issue · 3 comments
Ahsoka commented
This doesn't seem right to me.
aiogoogle/aiogoogle/auth/managers.py
Lines 406 to 407 in 8fd6b73
Should it be?
scopes = scopes or client_creds["scopes"]
scopes = " ".join(scopes)
omarryhan commented
Yeah, you're right. Nice catch!
Crazy how this was spotted after more than 2 years.
Happy to accept a PR or change it myself if you don't have the time.
Ahsoka commented
Hmmmm.... thank you for the offer but for now I think it would be best if you changed it since I don't know if I can make a PR in a timely fasion.
omarryhan commented
Sure, will push a fix now.