You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issuer that has a trailing slash, e.g https://me.yous.com/. in the getMetaData() method, there is the concatenating of this line of code: metaDataUrl := j.Issuer + j.Discovery.GetWellKnownUrl() to create the path to the jwks. But, because of the extra /, the URL will be incorrect, e.g https://me.yous.com//.well-known/openid-configuration.
Is there any workaround for this?
using v1.3.1; it appears that I'd have the same issue with the latest, (v.2.0.3)
The text was updated successfully, but these errors were encountered:
I actually rolled my own version of this library which should solve this for you that you can find here. You can create your verifier with a trailing slash in the issuer string and it will still work correctly.
I have an issuer that has a trailing slash, e.g
https://me.yous.com/
. in thegetMetaData()
method, there is the concatenating of this line of code:metaDataUrl := j.Issuer + j.Discovery.GetWellKnownUrl()
to create the path to the jwks. But, because of the extra/
, the URL will be incorrect, e.ghttps://me.yous.com//.well-known/openid-configuration
.Is there any workaround for this?
using v1.3.1; it appears that I'd have the same issue with the latest, (v.2.0.3)
The text was updated successfully, but these errors were encountered: