Skip to content

Commit

Permalink
Fixes #23768: Remove Password authentication for OAuth2
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceMacBuche committed Nov 22, 2023
1 parent 64c9a17 commit cd6d486
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ object RudderPropertyBasedOAuth2RegistrationDefinition {

val grantTypes = {
import AuthorizationGrantType._
List(AUTHORIZATION_CODE, REFRESH_TOKEN, CLIENT_CREDENTIALS, new AuthorizationGrantType("password")) // IMPLICIT is deprecated for security reason
List(AUTHORIZATION_CODE, REFRESH_TOKEN, CLIENT_CREDENTIALS) // PASSWORD and IMPLICIT are deprecated for security reasons
}

val baseProperty = "rudder.auth.oauth2.provider"
Expand Down

0 comments on commit cd6d486

Please sign in to comment.