Fix OPTIONS request on /token endpoint (#24)

pull/1580/head
Dominik František Bučík 2021-09-30 13:23:22 +02:00 committed by GitHub
parent 775e2e8b6a
commit 60baf14be4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,8 @@
package org.mitre.openid.connect.filter;
import static org.springframework.web.bind.annotation.RequestMethod.OPTIONS;
import java.util.HashSet;
import java.util.Set;
@ -45,6 +47,9 @@ public class MultiUrlRequestMatcher implements RequestMatcher {
@Override
public boolean matches(HttpServletRequest request) {
if (OPTIONS.toString().equalsIgnoreCase(request.getMethod())) {
return false;
}
for (RequestMatcher matcher : matchers) {
if (matcher.matches(request)) {
return true;