mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-23 14:07:11 +02:00
mcp: add oauth metadata endpoint (#5579)
This commit is contained in:
parent
2e7d1c7f12
commit
cb0e8aaf06
10 changed files with 324 additions and 32 deletions
11
internal/mcp/handler.go
Normal file
11
internal/mcp/handler.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package mcp
|
||||
|
||||
const (
|
||||
DefaultPrefix = "/.pomerium/mcp"
|
||||
|
||||
authorizationEndpoint = "/authorize"
|
||||
oauthCallbackEndpoint = "/oauth/callback"
|
||||
registerEndpoint = "/register"
|
||||
revocationEndpoint = "/revoke"
|
||||
tokenEndpoint = "/token"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue