mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-17 10:12:43 +02:00
mcp: add oauth metadata endpoint
This commit is contained in:
parent
e1d84a1dde
commit
ba03bb732b
5 changed files with 286 additions and 0 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