FIX id_token, field iss set to type str
This commit is contained in:
parent
ea4609c08c
commit
1c3bd7579b
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ def get_issuer(site_url=None, request=None):
|
||||||
.split('/.well-known/openid-configuration')[0]
|
.split('/.well-known/openid-configuration')[0]
|
||||||
issuer = site_url + path
|
issuer = site_url + path
|
||||||
|
|
||||||
return issuer
|
return str(issuer)
|
||||||
|
|
||||||
|
|
||||||
def default_userinfo(claims, user):
|
def default_userinfo(claims, user):
|
||||||
|
|
Loading…
Reference in a new issue