Interface PkceFactory
- All Known Implementing Classes:
 DefaultPkceFactory
API to Build/Persist a PKCE (Proof Key for Code Exchange).
- Since:
 - 3.9.0
 - Author:
 - Sergio del Amo
 
- 
Method Summary
Modifier and TypeMethodDescriptionbuildChallenge(io.micronaut.http.HttpRequest<?> request, io.micronaut.http.MutableHttpResponse<?> response, List<String> supportedChallengeMethods)  
- 
Method Details
- 
buildChallenge
@NonNull Optional<PkceChallenge> buildChallenge(@NonNull io.micronaut.http.HttpRequest<?> request, @NonNull io.micronaut.http.MutableHttpResponse<?> response, @Nullable List<String> supportedChallengeMethods) - Parameters:
 request- The original request prior redirectresponse- The authorization redirect responsesupportedChallengeMethods- Challenge methods supported by the authorization server- Returns:
 - A state parameter. An opaque value used to maintain state between the request and the callback.
 
 
 -