-
Notifications
You must be signed in to change notification settings - Fork 139
[Client] Support token_endpoint_auth_method: client_secret_basic, client_secret_post, none #321
Copy link
Copy link
Open
Labels
ClientIssues & PRs related to the Client componentIssues & PRs related to the Client componentP1Significant bug affecting many users, highly requested featureSignificant bug affecting many users, highly requested featureauthIssues and PRs related to Authentication / OAuthIssues and PRs related to Authentication / OAuthenhancementRequest for a new feature that's not currently supportedRequest for a new feature that's not currently supportedimproves spec complianceImproves consistency with other SDKs such as TyepScriptImproves consistency with other SDKs such as TyepScript
Metadata
Metadata
Assignees
Labels
ClientIssues & PRs related to the Client componentIssues & PRs related to the Client componentP1Significant bug affecting many users, highly requested featureSignificant bug affecting many users, highly requested featureauthIssues and PRs related to Authentication / OAuthIssues and PRs related to Authentication / OAuthenhancementRequest for a new feature that's not currently supportedRequest for a new feature that's not currently supportedimproves spec complianceImproves consistency with other SDKs such as TyepScriptImproves consistency with other SDKs such as TyepScript
Type
Fields
Give feedbackNo fields configured for issues without a type.
Context
Per RFC 6749 §2.3 (and AS metadata
token_endpoint_auth_methods_supported), the client must send its credentials to the token endpoint using whichever method the AS advertises:client_secret_basic→ HTTP BasicAuthorization: Basic base64(client_id:client_secret)client_secret_post→ form-encodedclient_id+client_secretbody paramsnone→ public client; onlyclient_idin body, no secretScope
TokenEndpointAuthInterface+ three implementations.Conformance scenarios unblocked
auth/token-endpoint-auth-basic,auth/token-endpoint-auth-post,auth/token-endpoint-auth-none.Dependencies
Blocked by: #318, #319.
Acceptance
cc @soyuka