We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48cb1ad commit bf64ca8Copy full SHA for bf64ca8
oauth2-server-core/src/main/java/nl/myndocs/oauth2/CallRouter.kt
@@ -142,7 +142,7 @@ class CallRouter(
142
143
private fun routeAuthorizeEndpoint(callContext: CallContext, authorizer: Authorizer) {
144
try {
145
- if (callContext.method.toLowerCase() != METHOD_GET) {
+ if (!arrayOf(METHOD_GET, METHOD_POST).contains(callContext.method.toLowerCase())) {
146
return
147
}
148
pom.xml
@@ -52,7 +52,7 @@
52
<dependency>
53
<groupId>io.mockk</groupId>
54
<artifactId>mockk</artifactId>
55
- <version>1.8.12.kotlin13</version>
+ <version>1.9.3</version>
56
<scope>test</scope>
57
</dependency>
58
0 commit comments