From 9d7cebce7c16d0d450246035129e0bcbdbaa63e6 Mon Sep 17 00:00:00 2001 From: Eric Chiang Date: Tue, 19 Apr 2016 15:55:07 -0700 Subject: [PATCH] examples/app: infer callback path from redirect URL --- examples/app/main.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/app/main.go b/examples/app/main.go index bbcc4386..c4bc8c42 100644 --- a/examples/app/main.go +++ b/examples/app/main.go @@ -20,10 +20,6 @@ import ( "github.com/coreos/go-oidc/oidc" ) -var ( - pathCallback = "/callback" -) - func main() { fs := flag.NewFlagSet("oidc-app", flag.ExitOnError) listen := fs.String("listen", "http://127.0.0.1:5555", "") @@ -142,7 +138,7 @@ func NewClientHandler(c *oidc.Client, issuer string, cbURL url.URL) http.Handler mux.HandleFunc("/", handleIndex) mux.HandleFunc("/login", handleLoginFunc(c)) mux.HandleFunc("/register", handleRegisterFunc(c)) - mux.HandleFunc(pathCallback, handleCallbackFunc(c)) + mux.HandleFunc(cbURL.Path, handleCallbackFunc(c)) resendURL := *issuerURL resendURL.Path = "/resend-verify-email"