We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When identifier is [email protected], WebfingerIssuerService.WebfingerIssuerFetcher fetches the url:
https://example.com/.well-known/webfinger?resource=XXXX%40example.com&rel=http%3A%2F%2Fopenid.net%2Fspecs%2Fconnect%2F1.0%2Fissuer
when it should be adding 'acct:' and fetching:
https://example.com/.well-known/webfinger?resource=acct%3AXXXX%40example.com&rel=http%3A%2F%2Fopenid.net%2Fspecs%2Fconnect%2F1.0%2Fissuer
I think this can be fixed by adding "acct:" prefix to "identifier" at https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/blob/master/openid-connect-client/src/main/java/org/mitre/openid/connect/client/service/impl/WebfingerIssuerService.java#L249.
Related to https://gitlab.com/openid/conformance-suite/-/issues/788.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When identifier is [email protected], WebfingerIssuerService.WebfingerIssuerFetcher fetches the url:
https://example.com/.well-known/webfinger?resource=XXXX%40example.com&rel=http%3A%2F%2Fopenid.net%2Fspecs%2Fconnect%2F1.0%2Fissuer
when it should be adding 'acct:' and fetching:
https://example.com/.well-known/webfinger?resource=acct%3AXXXX%40example.com&rel=http%3A%2F%2Fopenid.net%2Fspecs%2Fconnect%2F1.0%2Fissuer
I think this can be fixed by adding "acct:" prefix to "identifier" at https://github.com/mitreid-connect/OpenID-Connect-Java-Spring-Server/blob/master/openid-connect-client/src/main/java/org/mitre/openid/connect/client/service/impl/WebfingerIssuerService.java#L249.
Related to https://gitlab.com/openid/conformance-suite/-/issues/788.
The text was updated successfully, but these errors were encountered: