Merge pull request #123 from yasserisa/v0.4.x
FIX id_token, field iss set to type str
This commit is contained in:
commit
652dd979af
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