From 74c0148a375b2fb131c55110256dcda0fdd97438 Mon Sep 17 00:00:00 2001 From: Yoan VALLET <ext.sopra.yvallet@grandlyon.com> Date: Mon, 18 May 2020 09:23:40 +0200 Subject: [PATCH] Update main.go - fix redirect uri on auth endpoint --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 3dd3c8f..ae312a1 100644 --- a/main.go +++ b/main.go @@ -142,7 +142,7 @@ func main() { fmt.Println(err) } // Define the replyUri - replyUri := "oauth-proxy.wf.alpha.grandlyon.com/redirect" + replyUri := "https://oauth-proxy.wf.alpha.grandlyon.com/redirect" fmt.Println(time.Now().Format("2006-01-02 15:04:05"), "- Reply to - ", replyUri) // Get the response body as a string -- GitLab