Add unprotected route example
This commit is contained in:
parent
26313ee041
commit
146c8257ed
1 changed files with 6 additions and 0 deletions
|
@ -13,6 +13,10 @@ func protectMe(w http.ResponseWriter, r *http.Request) {
|
||||||
fmt.Fprintf(w, "secured")
|
fmt.Fprintf(w, "secured")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func dontProtectMe(w http.ResponseWriter, r *http.Request) {
|
||||||
|
fmt.Fprintf(w, "not secured")
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
var authFunc = func(email string, password string) error {
|
var authFunc = func(email string, password string) error {
|
||||||
// Hard-code a user
|
// Hard-code a user
|
||||||
|
@ -45,7 +49,9 @@ func main() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
protect := http.HandlerFunc(protectMe)
|
protect := http.HandlerFunc(protectMe)
|
||||||
|
dontProtect := http.HandlerFunc(dontProtectMe)
|
||||||
http.Handle("/authenticate", j.GenerateToken())
|
http.Handle("/authenticate", j.GenerateToken())
|
||||||
http.Handle("/secure", j.Secure(protect, verifyClaimsFunc))
|
http.Handle("/secure", j.Secure(protect, verifyClaimsFunc))
|
||||||
|
http.Handle("/insecure", dontProtect)
|
||||||
http.ListenAndServe(":8080", nil)
|
http.ListenAndServe(":8080", nil)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue