2
0
Эх сурвалжийг харах

Polish Resource Server Multi-tenancy Docs

Issue gh-7532
Josh Cummings 5 жил өмнө
parent
commit
8872d8b7d0

+ 3 - 2
docs/manual/src/docs/asciidoc/_includes/servlet/oauth2/oauth2-resourceserver.adoc

@@ -1604,8 +1604,7 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
     OpaqueTokenAuthenticationProvider opaqueToken = opaqueToken();
 
     return request -> {
-        String token = bearerToken.resolve(request);
-        if (isAJwt(token)) {
+        if (useJwt(request)) {
             return jwt::authenticate;
         } else {
             return opaqueToken::authenticate;
@@ -1614,6 +1613,8 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
 }
 ----
 
+NOTE: The implementation of `useJwt(HttpServletRequest)` will likely depend on custom request material like the path.
+
 And then specify this `AuthenticationManagerResolver` in the DSL:
 
 .Authentication Manager Resolver