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
We need to add a wait in the input parameters response_type=code
The following input parameters are to be expected:
client_id
state - protection against csrf (to implement within another task)
scope - OPTIONAL authorization scope
redirect_uri - OPTIONAL is the address to which the browser will be redirected after the user receives the access code. May be when bad request.
Example of a request - http://localhost:8080/realms/master/protocol/openid-connect/auth?response_type=code&client_id=test&state=state_value&scope=offline_access&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Ftest-callback.
If client_id=code, html must be returned.
The HTML must contain a form with fields:
session_code - parameter that saves the state of the authentication process. It is not necessary to implement within the task.
execution - I don't know what it is. As part of another task.
client_id - previous client_id
tab_id - A query parameter that specifies how sessions are handled in the background. Implement as part of another task.
client_data - TODO need to find out what is being transmitted here and in what format. I haven't found any information. I assume encrypted pair of user login and password.
The text was updated successfully, but these errors were encountered:
The endpoint needs to be modified - http://localhost:8080/realms/master/protocol/openid-connect/auth
Example of a request -
http://localhost:8080/realms/master/protocol/openid-connect/auth?response_type=code&client_id=test&state=state_value&scope=offline_access&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2Ftest-callback
.If client_id=code, html must be returned.
The HTML must contain a form with fields:
Sample form code:
Cookie installation example:
Need to have the post request sent to http://localhost:8080/realms/master/login-actions/authenticate with the following parameters:
The text was updated successfully, but these errors were encountered: