Is correct that inside the function verify_id_token in jwt_verifier.py to verify the client_id the claim "aud" is used instead of "cid" ?
The line of code
self.verify_client_id(claims['aud'])
shouldn't be
self.verify_client_id(claims['cid'])
Thanks for the answer
I see that there is a pull request open that fixes this issue, could you please review that?
#55