Home

oidc @main - refs - log -
-
https://git.jolheiser.com/oidc.git
Simple OIDC callback viewer
tree log patch
fix log and set json content type
Signature
-----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQJJXl/7NdDn7az3ojJ1Gxkp/FYLSAuysnBWDnWTwZyKd9ItW8erujDSbKYzd4iSzfG F3UYOG0PdaudD4gsH96gg= -----END SSH SIGNATURE-----
jolheiser <git@jolheiser.com>
2 months ago
2 changed files, 6 additions(+), 6 deletions(-)
M go.modgo.mod
diff --git a/go.mod b/go.mod
index f5c7871881ae016b3e7bd732f20d5dbd09a7af43..8ab1c37cbec7d77034ebc46280c1ff6bfea273f8 100644
--- a/go.mod
+++ b/go.mod
@@ -4,11 +4,11 @@ go 1.23.2
 
 require (
 	github.com/coreos/go-oidc/v3 v3.11.0
+	github.com/peterbourgon/ff/v3 v3.4.0
 	golang.org/x/oauth2 v0.21.0
 )
 
 require (
 	github.com/go-jose/go-jose/v4 v4.0.2 // indirect
-	github.com/peterbourgon/ff/v3 v3.4.0 // indirect
 	golang.org/x/crypto v0.25.0 // indirect
 )
M main.gomain.go
diff --git a/main.go b/main.go
index ed13a77ce5b5cf07f0b4f116c5c5df35a6b3f9c9..b88756f357cadcea45a58785e79cb5dc3b3c851a 100644
--- a/main.go
+++ b/main.go
@@ -146,15 +146,15 @@ 		if err := idToken.Claims(&resp.IDTokenClaims); err != nil {
 			http.Error(w, err.Error(), http.StatusInternalServerError)
 			return
 		}
-		data, err := json.MarshalIndent(resp, "", "    ")
-		if err != nil {
+		w.Header().Set("Content-Type", "application/json")
+		enc := json.NewEncoder(w)
+		enc.SetIndent("", "\t")
+		if err := enc.Encode(resp); err != nil {
 			http.Error(w, err.Error(), http.StatusInternalServerError)
-			return
 		}
-		w.Write(data)
 	})
 
 	bind := fmt.Sprintf(":%d", *port)
-	log.Printf("listening on http://localhost" + bind)
+	log.Println("listening on http://localhost" + bind)
 	log.Fatal(http.ListenAndServe(bind, mux))
 }