You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An authorization server should support a /authorize endpoint.
The endpoint should support the authorization code grant. It should verify the response_type, client_id, redirect_uri, scope, and state parameters and formulate an authorization response. The redirect_uri, scope, and state parameters are optional but MUST be verified if present.
The authorization code response should consist of code and state parameters. The state parameter is optional but MUST be returned if provided in the authorization request.
The text was updated successfully, but these errors were encountered:
Hi Team, I would like to work on this. I have experience working on integrating applications with IDP using Authorization grant. I am new to Spring Security though. Let me know if I can work on this.
It's a bit too early to work on this at the moment.
Our initial focus is to implement the client_credentials grant via #19 as the initial set of issues.
The authorization_code grant is much more involved and requires quite a few components to work together.
Over the next week or so, we'll be planning the next set of tasks at which point we'll have a more clear plan on next set of tasks. I'll be sure to reach out to you when we are ready. Thanks again and please stay tuned.
An authorization server should support a
/authorize
endpoint.The endpoint should support the authorization code grant. It should verify the
response_type
,client_id
,redirect_uri
,scope
, andstate
parameters and formulate an authorization response. Theredirect_uri
,scope
, andstate
parameters are optional but MUST be verified if present.The authorization code response should consist of
code
andstate
parameters. The state parameter is optional but MUST be returned if provided in the authorization request.The text was updated successfully, but these errors were encountered: