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 165197e commit 0d286d1Copy full SHA for 0d286d1
2 files changed
internal/controller/oidc_controller.go
@@ -70,6 +70,7 @@ func (controller *OIDCController) SetupRoutes() {
70
oidcGroup.POST("/authorize", controller.Authorize)
71
oidcGroup.POST("/token", controller.Token)
72
oidcGroup.GET("/userinfo", controller.Userinfo)
73
+ oidcGroup.POST("/userinfo", controller.Userinfo)
74
}
75
76
func (controller *OIDCController) GetClientInfo(c *gin.Context) {
internal/middleware/context_middleware.go
@@ -24,6 +24,7 @@ var (
24
"GET /api/oidc/clients",
25
"POST /api/oidc/token",
26
"GET /api/oidc/userinfo",
27
+ "POST /api/oidc/userinfo",
28
"GET /resources",
29
"POST /api/user/login",
30
"GET /.well-known/openid-configuration",
0 commit comments