Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 303 Bytes

go.md

File metadata and controls

14 lines (12 loc) · 303 Bytes
title
Go
jwtMiddleware := jwtmiddleware.New(jwtmiddleware.Options{
  ValidationKeyGetter: func(token *jwt.Token) (interface{}, error) {
    return []byte("${'<%= api.signing_secret %>'}"), nil
  },
  SigningMethod: jwt.SigningMethodHS256,
})

app := jwtMiddleware.Handler(myHandler)