@@ -776,13 +776,24 @@ class OAuthProviderImpl {
776
776
issuer : new URL ( tokenEndpoint ) . origin ,
777
777
authorization_endpoint : authorizeEndpoint ,
778
778
token_endpoint : tokenEndpoint ,
779
+ // not implemented: jwks_uri
779
780
registration_endpoint : registrationEndpoint ,
780
- token_endpoint_auth_methods_supported : [ "client_secret_basic" , "client_secret_post" ] ,
781
- grant_types_supported : [ "authorization_code" , "refresh_token" ] ,
782
- response_types_supported : [ "code" ] ,
783
781
scopes_supported : this . options . scopesSupported ,
782
+ response_types_supported : [ "code" ] ,
784
783
response_modes_supported : [ "query" ] ,
784
+ grant_types_supported : [ "authorization_code" , "refresh_token" ] ,
785
+ token_endpoint_auth_methods_supported : [ "client_secret_basic" , "client_secret_post" ] ,
786
+ // not implemented: token_endpoint_auth_signing_alg_values_supported
787
+ // not implemented: service_documentation
788
+ // not implemented: ui_locales_supported
789
+ // not implemented: op_policy_uri
790
+ // not implemented: op_tos_uri
785
791
revocation_endpoint : tokenEndpoint , // Reusing token endpoint for revocation
792
+ // not implemented: revocation_endpoint_auth_methods_supported
793
+ // not implemented: revocation_endpoint_auth_signing_alg_values_supported
794
+ // not implemented: introspection_endpoint
795
+ // not implemented: introspection_endpoint_auth_methods_supported
796
+ // not implemented: introspection_endpoint_auth_signing_alg_values_supported
786
797
code_challenge_methods_supported : [ "plain" , "S256" ] , // PKCE support
787
798
} ;
788
799
0 commit comments