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
Hi, I noticed that you have a lot of properties to fill, but couldn’t all be discovered just with "authority" + "/.well-known/openid-configuration"?
I think it shouldn't be our role to fill these, but based on "authority" the plugin itself fills in the information based on the result of the request I mentioned above. { "issuer": "http://192.168.15.5:9999/oauth", "jwks_uri": "http://192.168.15.5:9999/oauth/.well-known/openid-configuration/jwks", "authorization_endpoint": "http://192.168.15.5:9999/oauth/connect/authorize", "token_endpoint": "http://192.168.15.5:9999/oauth/connect/token", "userinfo_endpoint": "http://192.168.15.5:9999/oauth/connect/userinfo", "end_session_endpoint": "http://192.168.15.5:9999/oauth/connect/endsession", "check_session_iframe": "http://192.168.15.5:9999/oauth/connect/checksession", "revocation_endpoint": "http://192.168.15.5:9999/oauth/connect/revocation", "introspection_endpoint": "http://192.168.15.5:9999/oauth/connect/introspect", "device_authorization_endpoint": "http://192.168.15.5:9999/oauth/connect/deviceauthorization", "frontchannel_logout_supported": true, "frontchannel_logout_session_supported": true, "backchannel_logout_supported": true, "backchannel_logout_session_supported": true, "scopes_supported": ["offline_access"], "claims_supported": ["email_verified", "email", "family_name", "given_name", "middle_name", "nickname", "preferred_username", "profile", "name", "picture", "gender", "birthdate", "zoneinfo", "locale", "updated_at", "website", "sub"], "grant_types_supported": ["authorization_code", "client_credentials", "refresh_token", "implicit", "password", "urn:ietf:params:oauth:grant-type:device_code"], "response_types_supported": ["code", "token", "id_token", "id_token token", "code id_token", "code token", "code id_token token"], "response_modes_supported": ["form_post", "query", "fragment"], "token_endpoint_auth_methods_supported": ["client_secret_basic", "client_secret_post"], "id_token_signing_alg_values_supported": ["RS256"], "subject_types_supported": ["public"], "code_challenge_methods_supported": ["plain", "S256"], "request_parameter_supported": true }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I noticed that you have a lot of properties to fill, but couldn’t all be discovered just with "authority" + "/.well-known/openid-configuration"?
I think it shouldn't be our role to fill these, but based on "authority" the plugin itself fills in the information based on the result of the request I mentioned above.
{
"issuer": "http://192.168.15.5:9999/oauth",
"jwks_uri": "http://192.168.15.5:9999/oauth/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://192.168.15.5:9999/oauth/connect/authorize",
"token_endpoint": "http://192.168.15.5:9999/oauth/connect/token",
"userinfo_endpoint": "http://192.168.15.5:9999/oauth/connect/userinfo",
"end_session_endpoint": "http://192.168.15.5:9999/oauth/connect/endsession",
"check_session_iframe": "http://192.168.15.5:9999/oauth/connect/checksession",
"revocation_endpoint": "http://192.168.15.5:9999/oauth/connect/revocation",
"introspection_endpoint": "http://192.168.15.5:9999/oauth/connect/introspect",
"device_authorization_endpoint": "http://192.168.15.5:9999/oauth/connect/deviceauthorization",
"frontchannel_logout_supported": true,
"frontchannel_logout_session_supported": true,
"backchannel_logout_supported": true,
"backchannel_logout_session_supported": true,
"scopes_supported": ["offline_access"],
"claims_supported": ["email_verified", "email", "family_name", "given_name", "middle_name", "nickname", "preferred_username", "profile", "name", "picture", "gender", "birthdate", "zoneinfo", "locale", "updated_at", "website", "sub"],
"grant_types_supported": ["authorization_code", "client_credentials", "refresh_token", "implicit", "password", "urn:ietf:params:oauth:grant-type:device_code"],
"response_types_supported": ["code", "token", "id_token", "id_token token", "code id_token", "code token", "code id_token token"],
"response_modes_supported": ["form_post", "query", "fragment"],
"token_endpoint_auth_methods_supported": ["client_secret_basic", "client_secret_post"],
"id_token_signing_alg_values_supported": ["RS256"],
"subject_types_supported": ["public"],
"code_challenge_methods_supported": ["plain", "S256"],
"request_parameter_supported": true
}
The text was updated successfully, but these errors were encountered: