RequestParser
class RequestParser( remoteResourceRetriever: RemoteResourceRetrieverFunction = { null }, requestObjectJwsVerifier: RequestObjectJwsVerifier = RequestObjectJwsVerifier { _: Any -> true }, buildRequestObjectParameters: suspend () -> RequestObjectParameters? = { null })(source)
Constructors
Link copied to clipboard
constructor( remoteResourceRetriever: RemoteResourceRetrieverFunction = { null }, requestObjectJwsVerifier: RequestObjectJwsVerifier = RequestObjectJwsVerifier { _: Any -> true }, buildRequestObjectParameters: suspend () -> RequestObjectParameters? = { null })
Functions
Link copied to clipboard
suspend fun extractActualRequest(input: AuthenticationRequestParameters): KmmResult<AuthenticationRequestParameters>
Extracts the actual request, referenced by the passed-in input, e.g. extracting AuthenticationRequestParameters.request or AuthenticationRequestParameters.requestUri if necessary.
Link copied to clipboard
Pass in the request by a relying party, that is either a complete URL, or the POST body (e.g. the form-serialized values of the authorization request), or a serialized JWS (which may have been extracted from a request
parameter), to parse the AuthenticationRequestParameters, wrapped in RequestParametersFrom.