Closed jimmyjames closed 6 months ago
Adds support for Rich Authorization Requests (RAR) to the /par endpoint.
/par
Two new public methods have been added to AuthAPI. Both methods accept a list of maps, which will be serialized to url-form-encoded json.
AuthAPI
public Request<PushedAuthorizationResponse> pushedAuthorizationRequest(String redirectUri, String responseType, Map<String, String> params, List<Map<String, Object>> authorizationDetails)
public Request<PushedAuthorizationResponse> pushedAuthorizationRequestWithJAR(String request, List<Map<String, Object>> authorizationDetails)
Changes
Adds support for Rich Authorization Requests (RAR) to the
/par
endpoint.Two new public methods have been added to
AuthAPI
. Both methods accept a list of maps, which will be serialized to url-form-encoded json.public Request<PushedAuthorizationResponse> pushedAuthorizationRequest(String redirectUri, String responseType, Map<String, String> params, List<Map<String, Object>> authorizationDetails)
public Request<PushedAuthorizationResponse> pushedAuthorizationRequestWithJAR(String request, List<Map<String, Object>> authorizationDetails)
References