1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-17 00:17:40 +02:00

Introduce validate-url flag/config

This commit is contained in:
Mike Bland
2015-05-08 17:13:35 -04:00
parent 8e2d83600c
commit 72857018ee
8 changed files with 40 additions and 5 deletions

View File

@ -56,6 +56,7 @@ func main() {
flagSet.String("login-url", "", "Authentication endpoint")
flagSet.String("redeem-url", "", "Token redemption endpoint")
flagSet.String("profile-url", "", "Profile access endpoint")
flagSet.String("validate-url", "", "Access token validation endpoint")
flagSet.String("scope", "", "Oauth scope specification")
flagSet.Parse(os.Args[1:])